aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorKen Raeburn1999-10-25 04:58:18 +0000
committerKen Raeburn1999-10-25 04:58:18 +0000
commit7539e11fca07e5837010aaae18eaaefc7e51cf52 (patch)
tree679815b93c740067026d3a86165a2433f71fbad6 /src/emacs.c
parent3a7093d84fa090b8f2458cef0376b81de4bd77ff (diff)
downloademacs-7539e11fca07e5837010aaae18eaaefc7e51cf52.tar.gz
emacs-7539e11fca07e5837010aaae18eaaefc7e51cf52.zip
more XCAR/XCDR/XFLOAT_DATA uses, to help isolete lisp engine
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 97ed060bb74..7acf3f59e4d 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1077,11 +1077,11 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
1077 } 1077 }
1078 1078
1079 for (tail = Vbuffer_alist; CONSP (tail); 1079 for (tail = Vbuffer_alist; CONSP (tail);
1080 tail = XCONS (tail)->cdr) 1080 tail = XCDR (tail))
1081 { 1081 {
1082 Lisp_Object buffer; 1082 Lisp_Object buffer;
1083 1083
1084 buffer = Fcdr (XCONS (tail)->car); 1084 buffer = Fcdr (XCAR (tail));
1085 /* Verify that all buffers are empty now, as they 1085 /* Verify that all buffers are empty now, as they
1086 ought to be. */ 1086 ought to be. */
1087 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer))) 1087 if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))