]> git.eshelyaron.com Git - emacs.git/commitdiff
(Finsert_file_contents): Fix previous change--don't
authorRichard M. Stallman <rms@gnu.org>
Mon, 1 Sep 1997 22:43:29 +0000 (22:43 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 1 Sep 1997 22:43:29 +0000 (22:43 +0000)
call Fboundp on Vset_auto_coding_function, just check non-nil.

src/fileio.c

index 5502ebf0d310c87e72b53fce71942e95421a1982..6c02122651402b7af0f20a5a92242b4d59fbd6ac 100644 (file)
@@ -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