changeset 1501:c090f7dcfd27

* buffer.c (reset_buffer): Don't assign to b->save_length as if it were an int; use XFASTINT.
author Jim Blandy <jimb@redhat.com>
date Sat, 31 Oct 1992 04:50:51 +0000
parents 6489d5182a64
children fa4c1f1c744d
files src/buffer.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/buffer.c	Sat Oct 31 04:50:13 1992 +0000
+++ b/src/buffer.c	Sat Oct 31 04:50:51 1992 +0000
@@ -265,7 +265,7 @@
   b->directory = (current_buffer) ? current_buffer->directory : Qnil;
   b->modtime = 0;
   b->save_modified = 1;
-  b->save_length = 0;
+  XFASTINT (b->save_length) = 0;
   b->last_window_start = 1;
   b->backed_up = Qnil;
   b->auto_save_modified = 0;