1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-26 23:31:55 -08:00

(magic_searchpath_decoder): Fix typos.

This commit is contained in:
Richard M. Stallman 1993-05-26 22:12:18 +00:00
parent 9d04a87aad
commit 44bbb3e05b

View file

@ -204,12 +204,12 @@ magic_searchpath_decoder (incantation_string, file, return_path)
string = (char *) alloca (string_size * sizeof (*string));
}
bcopy (s, string, len);
string[len + 1] = '\0';
string[len] = '\0';
if (decode_magic (string, file, return_path))
return 1;
}
if (p)
if (p && *p != 0)
s = p + 1;
else
return 0;