diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-11-23 03:23:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-11-23 03:23:05 +0000 |
commit | 05be3f1a8a6e2b13b078511e65ccddc8b95463d2 (patch) | |
tree | 35f3e59927e70e9cfa535aded3c2fdfb72a50bf4 /src/xrdb.c | |
parent | 55e86af6f55b95f484d01a95145ab8f2b2377da0 (diff) | |
download | emacs-05be3f1a8a6e2b13b078511e65ccddc8b95463d2.tar.gz emacs-05be3f1a8a6e2b13b078511e65ccddc8b95463d2.tar.bz2 emacs-05be3f1a8a6e2b13b078511e65ccddc8b95463d2.zip |
(search_magic_path): Fix colon-colon case.
Diffstat (limited to 'src/xrdb.c')
-rw-r--r-- | src/xrdb.c | 3 |
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; } |