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
d062cf33
Commit
d062cf33
authored
Sep 01, 1997
by
Richard M. Stallman
Browse files
(Finsert_file_contents): Fix previous change--don't
call Fboundp on Vset_auto_coding_function, just check non-nil.
parent
5b4dd2e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/fileio.c
src/fileio.c
+1
-2
No files found.
src/fileio.c
View file @
d062cf33
...
...
@@ -3149,8 +3149,7 @@ This does code conversion according to the value of\n\
val
=
Qemacs_mule
;
else
{
if
(
SYMBOLP
(
Vset_auto_coding_function
)
&&
!
NILP
(
Fboundp
(
Vset_auto_coding_function
)))
if
(
!
NILP
(
Vset_auto_coding_function
))
{
/* Find a coding system specified in the heading two lines
or in the tailing several lines of the file. We assume
...
...
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