comparison 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
comparison
equal deleted inserted replaced
1500:6489d5182a64 1501:c090f7dcfd27
263 { 263 {
264 b->filename = Qnil; 264 b->filename = Qnil;
265 b->directory = (current_buffer) ? current_buffer->directory : Qnil; 265 b->directory = (current_buffer) ? current_buffer->directory : Qnil;
266 b->modtime = 0; 266 b->modtime = 0;
267 b->save_modified = 1; 267 b->save_modified = 1;
268 b->save_length = 0; 268 XFASTINT (b->save_length) = 0;
269 b->last_window_start = 1; 269 b->last_window_start = 1;
270 b->backed_up = Qnil; 270 b->backed_up = Qnil;
271 b->auto_save_modified = 0; 271 b->auto_save_modified = 0;
272 b->auto_save_file_name = Qnil; 272 b->auto_save_file_name = Qnil;
273 b->read_only = Qnil; 273 b->read_only = Qnil;