diff options
| author | Paul Eggert | 2012-08-17 23:06:39 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-17 23:06:39 -0700 |
| commit | 39eb03f1b023ae3d94e311f6f5d9f913f75c42c4 (patch) | |
| tree | 454b784e6ccc782a6f3c16d67e01cc8a1e5051be /src/coding.c | |
| parent | 2170b1bdd500484349deec2d946119e6a653e198 (diff) | |
| download | emacs-39eb03f1b023ae3d94e311f6f5d9f913f75c42c4.tar.gz emacs-39eb03f1b023ae3d94e311f6f5d9f913f75c42c4.zip | |
* buffer.h (BSET): Remove.
Replace all uses with calls to new setter functions.
(bset_bidi_paragraph_direction, bset_case_canon_table)
(bset_case_eqv_table, bset_directory, bset_display_count)
(bset_display_time, bset_downcase_table)
(bset_enable_multibyte_characters, bset_filename, bset_keymap)
(bset_last_selected_window, bset_local_var_alist)
(bset_mark_active, bset_point_before_scroll, bset_read_only)
(bset_truncate_lines, bset_undo_list, bset_upcase_table)
(bset_width_table):
* buffer.c (bset_abbrev_mode, bset_abbrev_table)
(bset_auto_fill_function, bset_auto_save_file_format)
(bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
(bset_bidi_display_reordering, bset_buffer_file_coding_system)
(bset_cache_long_line_scans, bset_case_fold_search)
(bset_ctl_arrow, bset_cursor_in_non_selected_windows)
(bset_cursor_type, bset_display_table, bset_extra_line_spacing)
(bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
(bset_fringe_indicator_alist, bset_fringes_outside_margins)
(bset_header_line_format, bset_indicate_buffer_boundaries)
(bset_indicate_empty_lines, bset_invisibility_spec)
(bset_left_fringe_width, bset_major_mode, bset_mark)
(bset_minor_modes, bset_mode_line_format, bset_mode_name)
(bset_name, bset_overwrite_mode, bset_pt_marker)
(bset_right_fringe_width, bset_save_length)
(bset_scroll_bar_width, bset_scroll_down_aggressively)
(bset_scroll_up_aggressively, bset_selective_display)
(bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
(bset_word_wrap, bset_zv_marker):
* category.c (bset_category_table):
* syntax.c (bset_syntax_table):
New setter functions.
Fixes: debbugs:12215
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/coding.c b/src/coding.c index 290b9a5dbb6..971686dc180 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7112,7 +7112,7 @@ decode_coding (struct coding_system *coding) | |||
| 7112 | record_first_change (); | 7112 | record_first_change (); |
| 7113 | 7113 | ||
| 7114 | undo_list = BVAR (current_buffer, undo_list); | 7114 | undo_list = BVAR (current_buffer, undo_list); |
| 7115 | BSET (current_buffer, undo_list, Qt); | 7115 | bset_undo_list (current_buffer, Qt); |
| 7116 | } | 7116 | } |
| 7117 | 7117 | ||
| 7118 | coding->consumed = coding->consumed_char = 0; | 7118 | coding->consumed = coding->consumed_char = 0; |
| @@ -7209,7 +7209,7 @@ decode_coding (struct coding_system *coding) | |||
| 7209 | decode_eol (coding); | 7209 | decode_eol (coding); |
| 7210 | if (BUFFERP (coding->dst_object)) | 7210 | if (BUFFERP (coding->dst_object)) |
| 7211 | { | 7211 | { |
| 7212 | BSET (current_buffer, undo_list, undo_list); | 7212 | bset_undo_list (current_buffer, undo_list); |
| 7213 | record_insert (coding->dst_pos, coding->produced_char); | 7213 | record_insert (coding->dst_pos, coding->produced_char); |
| 7214 | } | 7214 | } |
| 7215 | return coding->result; | 7215 | return coding->result; |
| @@ -7577,8 +7577,8 @@ make_conversion_work_buffer (int multibyte) | |||
| 7577 | doesn't compile new regexps. */ | 7577 | doesn't compile new regexps. */ |
| 7578 | Fset (Fmake_local_variable (Qinhibit_modification_hooks), Qt); | 7578 | Fset (Fmake_local_variable (Qinhibit_modification_hooks), Qt); |
| 7579 | Ferase_buffer (); | 7579 | Ferase_buffer (); |
| 7580 | BSET (current_buffer, undo_list, Qt); | 7580 | bset_undo_list (current_buffer, Qt); |
| 7581 | BSET (current_buffer, enable_multibyte_characters, multibyte ? Qt : Qnil); | 7581 | bset_enable_multibyte_characters (current_buffer, multibyte ? Qt : Qnil); |
| 7582 | set_buffer_internal (current); | 7582 | set_buffer_internal (current); |
| 7583 | return workbuf; | 7583 | return workbuf; |
| 7584 | } | 7584 | } |