From: Richard M. Stallman Date: Sun, 8 Oct 1995 19:26:07 +0000 (+0000) Subject: (init_buffer_once): Make file_format always local, not just local when set. X-Git-Tag: emacs-19.34~2709 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a96621c61ee69b401aa824e35d38348b949da615;p=emacs.git (init_buffer_once): Make file_format always local, not just local when set. --- diff --git a/src/buffer.c b/src/buffer.c index d3451ccd81e..e4b8130e6e5 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -3353,6 +3353,7 @@ init_buffer_once () XSETINT (buffer_local_flags.point_before_scroll, -1); XSETINT (buffer_local_flags.file_truename, -1); XSETINT (buffer_local_flags.invisibility_spec, -1); + XSETFASTINT (buffer_local_flags.file_format, -1); XSETFASTINT (buffer_local_flags.mode_line_format, 1); XSETFASTINT (buffer_local_flags.abbrev_mode, 2); @@ -3372,7 +3373,6 @@ init_buffer_once () XSETFASTINT (buffer_local_flags.display_table, 0x2000); XSETFASTINT (buffer_local_flags.syntax_table, 0x8000); XSETFASTINT (buffer_local_flags.cache_long_line_scans, 0x10000); - XSETFASTINT (buffer_local_flags.file_format, 0x20000); #ifdef DOS_NT XSETFASTINT (buffer_local_flags.buffer_file_type, 0x4000); #endif