summaryrefslogtreecommitdiff
path: root/src/xrdb.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-11-23 03:23:05 +0000
committerRichard M. Stallman <rms@gnu.org>1993-11-23 03:23:05 +0000
commitfdfeb36537c6f78872324905aed10eb62f666bb3 (patch)
tree950b78cb91de013bdf59db297bbc6d1f90f422a1 /src/xrdb.c
parent98da7d4e639e325d58c6feb68d873d10bf662f08 (diff)
downloademacs-fdfeb36537c6f78872324905aed10eb62f666bb3.tar.gz
(search_magic_path): Fix colon-colon case.
Diffstat (limited to 'src/xrdb.c')
-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)
if (path)
return path;
- s = p + 1;
+ /* Skip the first colon. */
+ p++;
continue;
}