From: Richard M. Stallman Date: Tue, 23 Nov 1993 03:23:05 +0000 (+0000) Subject: (search_magic_path): Fix colon-colon case. X-Git-Tag: emacs-19.34~10735 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=05be3f1a8a6e2b13b078511e65ccddc8b95463d2;p=emacs.git (search_magic_path): Fix colon-colon case. --- diff --git a/src/xrdb.c b/src/xrdb.c index 354d38a52b4..4c80d055536 100644 --- a/src/xrdb.c +++ b/src/xrdb.c @@ -348,7 +348,8 @@ search_magic_path (search_path, class, escaped_suffix, suffix) if (path) return path; - s = p + 1; + /* Skip the first colon. */ + p++; continue; }