diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-08-27 17:21:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-08-27 17:21:27 +0000 |
commit | 11707f491bea96c10b76be5962b97c2cdfbd2ab8 (patch) | |
tree | 21355f99dfef39a2a23fc9a42b31361c95d6dd1b /src | |
parent | 5de2b9b358e277947b5e09e6ac90f18a68b8da5e (diff) | |
download | emacs-11707f491bea96c10b76be5962b97c2cdfbd2ab8.tar.gz |
(Finsert_file_contents): Fix use of Fboundp.
Diffstat (limited to 'src')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 99c9b0f30e4..d8164d64dc8 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3150,7 +3150,7 @@ This does code conversion according to the value of\n\ else { if (SYMBOLP (Vauto_file_coding_system_function) - && Fboundp (Vauto_file_coding_system_function)) + && !NILP (Fboundp (Vauto_file_coding_system_function))) { /* Find a coding system specified in a few lines at the head of the file. We assume that the fist 1K bytes is |