From d062cf33059c6af0af7b50971e5839dadddbd50f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 1 Sep 1997 22:43:29 +0000 Subject: [PATCH] (Finsert_file_contents): Fix previous change--don't call Fboundp on Vset_auto_coding_function, just check non-nil. --- src/fileio.c | 3 +-- 1 file changed, 1 insertion(+), 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\ 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 -- 2.39.2