Mercurial > emacs
changeset 9110:c0eefdfd11f4
(sys_subshell): Use type test macros.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 27 Sep 1994 01:18:46 +0000 |
parents | 6e44ddc40153 |
children | b2596f9e624c |
files | src/sysdep.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sysdep.c Tue Sep 27 01:16:02 1994 +0000 +++ b/src/sysdep.c Tue Sep 27 01:18:46 1994 +0000 @@ -667,7 +667,7 @@ if (XFASTINT (Fboundp (dir)) == XFASTINT (Qnil)) goto xyzzy; dir = Fsymbol_value (dir); - if (XTYPE (dir) != Lisp_String) + if (!STRINGP (dir)) goto xyzzy; dir = expand_and_dir_to_file (Funhandled_file_name_directory (dir), Qnil);