aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-01 22:43:29 +0000
committerRichard M. Stallman1997-09-01 22:43:29 +0000
commitd062cf33059c6af0af7b50971e5839dadddbd50f (patch)
tree34879acb6ee1d318fe27e4133aae32f7f6ce0ce8 /src
parent5b4dd2e27e7ddde17435d2a90ad27747bfb30b96 (diff)
downloademacs-d062cf33059c6af0af7b50971e5839dadddbd50f.tar.gz
emacs-d062cf33059c6af0af7b50971e5839dadddbd50f.zip
(Finsert_file_contents): Fix previous change--don't
call Fboundp on Vset_auto_coding_function, just check non-nil.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 5502ebf0d31..6c021226514 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3149,8 +3149,7 @@ This does code conversion according to the value of\n\
3149 val = Qemacs_mule; 3149 val = Qemacs_mule;
3150 else 3150 else
3151 { 3151 {
3152 if (SYMBOLP (Vset_auto_coding_function) 3152 if (! NILP (Vset_auto_coding_function))
3153 && !NILP (Fboundp (Vset_auto_coding_function)))
3154 { 3153 {
3155 /* Find a coding system specified in the heading two lines 3154 /* Find a coding system specified in the heading two lines
3156 or in the tailing several lines of the file. We assume 3155 or in the tailing several lines of the file. We assume