aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-08 19:26:07 +0000
committerRichard M. Stallman1995-10-08 19:26:07 +0000
commita96621c61ee69b401aa824e35d38348b949da615 (patch)
treeeaf081dc7fa2b5df41afea752cb2579f7e72137b /src/buffer.c
parentc96a008cc94cc6b180b65213568226f46aff9a92 (diff)
downloademacs-a96621c61ee69b401aa824e35d38348b949da615.tar.gz
emacs-a96621c61ee69b401aa824e35d38348b949da615.zip
(init_buffer_once): Make file_format always local, not just local when set.
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
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 ()
3353 XSETINT (buffer_local_flags.point_before_scroll, -1); 3353 XSETINT (buffer_local_flags.point_before_scroll, -1);
3354 XSETINT (buffer_local_flags.file_truename, -1); 3354 XSETINT (buffer_local_flags.file_truename, -1);
3355 XSETINT (buffer_local_flags.invisibility_spec, -1); 3355 XSETINT (buffer_local_flags.invisibility_spec, -1);
3356 XSETFASTINT (buffer_local_flags.file_format, -1);
3356 3357
3357 XSETFASTINT (buffer_local_flags.mode_line_format, 1); 3358 XSETFASTINT (buffer_local_flags.mode_line_format, 1);
3358 XSETFASTINT (buffer_local_flags.abbrev_mode, 2); 3359 XSETFASTINT (buffer_local_flags.abbrev_mode, 2);
@@ -3372,7 +3373,6 @@ init_buffer_once ()
3372 XSETFASTINT (buffer_local_flags.display_table, 0x2000); 3373 XSETFASTINT (buffer_local_flags.display_table, 0x2000);
3373 XSETFASTINT (buffer_local_flags.syntax_table, 0x8000); 3374 XSETFASTINT (buffer_local_flags.syntax_table, 0x8000);
3374 XSETFASTINT (buffer_local_flags.cache_long_line_scans, 0x10000); 3375 XSETFASTINT (buffer_local_flags.cache_long_line_scans, 0x10000);
3375 XSETFASTINT (buffer_local_flags.file_format, 0x20000);
3376#ifdef DOS_NT 3376#ifdef DOS_NT
3377 XSETFASTINT (buffer_local_flags.buffer_file_type, 0x4000); 3377 XSETFASTINT (buffer_local_flags.buffer_file_type, 0x4000);
3378#endif 3378#endif