diff options
| author | Stefan Monnier | 2009-02-11 03:52:56 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-02-11 03:52:56 +0000 |
| commit | 294fa707e0c7e1b94b0815b91ed0e7989ac76896 (patch) | |
| tree | d03a56510149bf327a4d2ad9d2797626d82476a4 /src | |
| parent | 352f6bff86d820ead574ef9d5dbcfde81caa7184 (diff) | |
| download | emacs-294fa707e0c7e1b94b0815b91ed0e7989ac76896.tar.gz emacs-294fa707e0c7e1b94b0815b91ed0e7989ac76896.zip | |
(Fwrite_region): !NILP -> CONSP.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/fileio.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e6f380e2db4..724c95fdaa2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * fileio.c (Fwrite_region): !NILP -> CONSP. | ||
| 4 | |||
| 1 | 2009-02-10 Andreas Schwab <schwab@suse.de> | 5 | 2009-02-10 Andreas Schwab <schwab@suse.de> |
| 2 | 6 | ||
| 3 | * process.c (send_process): Properly relocate pointer into data | 7 | * process.c (send_process): Properly relocate pointer into data |
diff --git a/src/fileio.c b/src/fileio.c index 5f91da53585..5b96949dcc4 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -4651,7 +4651,7 @@ This calls `write-region-annotate-functions' at the start, and | |||
| 4651 | specpdl_ptr = specpdl + count1; | 4651 | specpdl_ptr = specpdl + count1; |
| 4652 | 4652 | ||
| 4653 | /* Call write-region-post-annotation-function. */ | 4653 | /* Call write-region-post-annotation-function. */ |
| 4654 | while (!NILP (Vwrite_region_annotation_buffers)) | 4654 | while (CONSP (Vwrite_region_annotation_buffers)) |
| 4655 | { | 4655 | { |
| 4656 | Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers); | 4656 | Lisp_Object buf = XCAR (Vwrite_region_annotation_buffers); |
| 4657 | if (!NILP (Fbuffer_live_p (buf))) | 4657 | if (!NILP (Fbuffer_live_p (buf))) |