aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2009-02-11 03:52:56 +0000
committerStefan Monnier2009-02-11 03:52:56 +0000
commit294fa707e0c7e1b94b0815b91ed0e7989ac76896 (patch)
treed03a56510149bf327a4d2ad9d2797626d82476a4 /src
parent352f6bff86d820ead574ef9d5dbcfde81caa7184 (diff)
downloademacs-294fa707e0c7e1b94b0815b91ed0e7989ac76896.tar.gz
emacs-294fa707e0c7e1b94b0815b91ed0e7989ac76896.zip
(Fwrite_region): !NILP -> CONSP.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fileio.c2
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 @@
12009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * fileio.c (Fwrite_region): !NILP -> CONSP.
4
12009-02-10 Andreas Schwab <schwab@suse.de> 52009-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)))