Mercurial > emacs
diff src/buffer.c @ 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 | f6ab9d1e1709 |
| children | e721339972b0 |
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;
