aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-23 03:23:05 +0000
committerRichard M. Stallman1993-11-23 03:23:05 +0000
commit05be3f1a8a6e2b13b078511e65ccddc8b95463d2 (patch)
tree35f3e59927e70e9cfa535aded3c2fdfb72a50bf4 /src
parent55e86af6f55b95f484d01a95145ab8f2b2377da0 (diff)
downloademacs-05be3f1a8a6e2b13b078511e65ccddc8b95463d2.tar.gz
emacs-05be3f1a8a6e2b13b078511e65ccddc8b95463d2.zip
(search_magic_path): Fix colon-colon case.
Diffstat (limited to 'src')
-rw-r--r--src/xrdb.c3
1 files changed, 2 insertions, 1 deletions
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)
348 if (path) 348 if (path)
349 return path; 349 return path;
350 350
351 s = p + 1; 351 /* Skip the first colon. */
352 p++;
352 continue; 353 continue;
353 } 354 }
354 355