diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/buffer.c b/src/buffer.c index fc2dd3a4691..49ae4bbede2 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5041,7 +5041,7 @@ init_buffer_once (void) | |||
| 5041 | B_ (&buffer_defaults, cursor_in_non_selected_windows) = Qt; | 5041 | B_ (&buffer_defaults, cursor_in_non_selected_windows) = Qt; |
| 5042 | 5042 | ||
| 5043 | #ifdef DOS_NT | 5043 | #ifdef DOS_NT |
| 5044 | buffer_defaults.buffer_file_type = Qnil; /* TEXT */ | 5044 | B_ (&buffer_defaults, buffer_file_type) = Qnil; /* TEXT */ |
| 5045 | #endif | 5045 | #endif |
| 5046 | B_ (&buffer_defaults, enable_multibyte_characters) = Qt; | 5046 | B_ (&buffer_defaults, enable_multibyte_characters) = Qt; |
| 5047 | B_ (&buffer_defaults, buffer_file_coding_system) = Qnil; | 5047 | B_ (&buffer_defaults, buffer_file_coding_system) = Qnil; |
| @@ -5113,7 +5113,7 @@ init_buffer_once (void) | |||
| 5113 | XSETFASTINT (B_ (&buffer_local_flags, abbrev_table), idx); ++idx; | 5113 | XSETFASTINT (B_ (&buffer_local_flags, abbrev_table), idx); ++idx; |
| 5114 | XSETFASTINT (B_ (&buffer_local_flags, display_table), idx); ++idx; | 5114 | XSETFASTINT (B_ (&buffer_local_flags, display_table), idx); ++idx; |
| 5115 | #ifdef DOS_NT | 5115 | #ifdef DOS_NT |
| 5116 | XSETFASTINT (buffer_local_flags.buffer_file_type, idx); | 5116 | XSETFASTINT (B_ (&buffer_local_flags, buffer_file_type), idx); |
| 5117 | /* Make this one a permanent local. */ | 5117 | /* Make this one a permanent local. */ |
| 5118 | buffer_permanent_local_flags[idx++] = 1; | 5118 | buffer_permanent_local_flags[idx++] = 1; |
| 5119 | #endif | 5119 | #endif |
| @@ -5674,7 +5674,7 @@ word-wrapping, you might want to reduce the value of | |||
| 5674 | in narrower windows. */); | 5674 | in narrower windows. */); |
| 5675 | 5675 | ||
| 5676 | #ifdef DOS_NT | 5676 | #ifdef DOS_NT |
| 5677 | DEFVAR_PER_BUFFER ("buffer-file-type", ¤t_buffer->buffer_file_type, | 5677 | DEFVAR_PER_BUFFER ("buffer-file-type", &B_ (current_buffer, buffer_file_type), |
| 5678 | Qnil, | 5678 | Qnil, |
| 5679 | doc: /* Non-nil if the visited file is a binary file. | 5679 | doc: /* Non-nil if the visited file is a binary file. |
| 5680 | This variable is meaningful on MS-DOG and Windows NT. | 5680 | This variable is meaningful on MS-DOG and Windows NT. |