diff options
| author | Richard M. Stallman | 1997-08-27 17:21:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-27 17:21:27 +0000 |
| commit | d420d5b4fe6df6319a5ff150c353dc4eb3050851 (patch) | |
| tree | bf94e21ba9d1ff58cf35d2442f8fe1aad63fbbbe /src | |
| parent | 44173109afdc1252dda450184f7621c09b4c92fc (diff) | |
| download | emacs-d420d5b4fe6df6319a5ff150c353dc4eb3050851.tar.gz emacs-d420d5b4fe6df6319a5ff150c353dc4eb3050851.zip | |
(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\ | |||
| 3150 | else | 3150 | else |
| 3151 | { | 3151 | { |
| 3152 | if (SYMBOLP (Vauto_file_coding_system_function) | 3152 | if (SYMBOLP (Vauto_file_coding_system_function) |
| 3153 | && Fboundp (Vauto_file_coding_system_function)) | 3153 | && !NILP (Fboundp (Vauto_file_coding_system_function))) |
| 3154 | { | 3154 | { |
| 3155 | /* Find a coding system specified in a few lines at the | 3155 | /* Find a coding system specified in a few lines at the |
| 3156 | head of the file. We assume that the fist 1K bytes is | 3156 | head of the file. We assume that the fist 1K bytes is |