aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-26 22:12:18 +0000
committerRichard M. Stallman1993-05-26 22:12:18 +0000
commit44bbb3e05bb92f03ef5cfb4c6a55a4c79bb799fc (patch)
tree780179622b9afb3f728768f12164a4ee8f967a12 /src
parent9d04a87aad56d7baeee6173a040b43981956cf49 (diff)
downloademacs-44bbb3e05bb92f03ef5cfb4c6a55a4c79bb799fc.tar.gz
emacs-44bbb3e05bb92f03ef5cfb4c6a55a4c79bb799fc.zip
(magic_searchpath_decoder): Fix typos.
Diffstat (limited to 'src')
-rw-r--r--src/xrdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xrdb.c b/src/xrdb.c
index cf7a06f8041..fdce4e44a88 100644
--- a/src/xrdb.c
+++ b/src/xrdb.c
@@ -204,12 +204,12 @@ magic_searchpath_decoder (incantation_string, file, return_path)
204 string = (char *) alloca (string_size * sizeof (*string)); 204 string = (char *) alloca (string_size * sizeof (*string));
205 } 205 }
206 bcopy (s, string, len); 206 bcopy (s, string, len);
207 string[len + 1] = '\0'; 207 string[len] = '\0';
208 if (decode_magic (string, file, return_path)) 208 if (decode_magic (string, file, return_path))
209 return 1; 209 return 1;
210 } 210 }
211 211
212 if (p) 212 if (p && *p != 0)
213 s = p + 1; 213 s = p + 1;
214 else 214 else
215 return 0; 215 return 0;