Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0e7e7a58
Commit
0e7e7a58
authored
Oct 11, 1994
by
Karl Heuer
Browse files
(sys_subshell): Use NILP macro directly, not its expansion. Previous code was
leftover from when NULL was a bad word.
parent
0ea48932
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/sysdep.c
src/sysdep.c
+1
-2
No files found.
src/sysdep.c
View file @
0e7e7a58
...
...
@@ -677,8 +677,7 @@ sys_subshell ()
which somehow wedges the hp compiler. So instead... */
dir = intern ("default-directory");
/* Can't use NILP */
if (XFASTINT (Fboundp (dir)) == XFASTINT (Qnil))
if (NILP (Fboundp (dir)))
goto xyzzy;
dir = Fsymbol_value (dir);
if (!STRINGP (dir))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment