Mercurial > emacs
diff src/sysdep.c @ 9110:c0eefdfd11f4
(sys_subshell): Use type test macros.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 27 Sep 1994 01:18:46 +0000 |
parents | 2c6875700c9f |
children | d4ad53f37cc7 |
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);