diff options
| author | Stefan Monnier | 2013-11-05 23:11:04 -0500 |
|---|---|---|
| committer | Stefan Monnier | 2013-11-05 23:11:04 -0500 |
| commit | 94ae2ad44cfd711c836e0fbd86b9e133724482d5 (patch) | |
| tree | a7ecfb60f2bd55f60bf5c5fe3d5e49c12e846ac4 /src/frame.c | |
| parent | feca4e2db9d9dd539b09da9c19f49865952b184d (diff) | |
| download | emacs-94ae2ad44cfd711c836e0fbd86b9e133724482d5.tar.gz emacs-94ae2ad44cfd711c836e0fbd86b9e133724482d5.zip | |
*.[chm]: Number every assignment to windows_or_buffers_changed.
Diffstat (limited to 'src/frame.c')
| -rw-r--r-- | src/frame.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/frame.c b/src/frame.c index 14e8fabd149..05f74e4b621 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -231,7 +231,7 @@ set_menu_bar_lines (struct frame *f, Lisp_Object value, Lisp_Object oldval) | |||
| 231 | 231 | ||
| 232 | if (nlines != olines) | 232 | if (nlines != olines) |
| 233 | { | 233 | { |
| 234 | windows_or_buffers_changed++; | 234 | windows_or_buffers_changed = 14; |
| 235 | FRAME_WINDOW_SIZES_CHANGED (f) = 1; | 235 | FRAME_WINDOW_SIZES_CHANGED (f) = 1; |
| 236 | FRAME_MENU_BAR_LINES (f) = nlines; | 236 | FRAME_MENU_BAR_LINES (f) = nlines; |
| 237 | set_menu_bar_lines_1 (f->root_window, nlines - olines); | 237 | set_menu_bar_lines_1 (f->root_window, nlines - olines); |
| @@ -1699,7 +1699,7 @@ If omitted, FRAME defaults to the currently selected frame. */) | |||
| 1699 | make_frame_visible_1 (f->root_window); | 1699 | make_frame_visible_1 (f->root_window); |
| 1700 | 1700 | ||
| 1701 | /* Make menu bar update for the Buffers and Frames menus. */ | 1701 | /* Make menu bar update for the Buffers and Frames menus. */ |
| 1702 | windows_or_buffers_changed++; | 1702 | windows_or_buffers_changed = 15; |
| 1703 | 1703 | ||
| 1704 | XSETFRAME (frame, f); | 1704 | XSETFRAME (frame, f); |
| 1705 | return frame; | 1705 | return frame; |
| @@ -1753,7 +1753,7 @@ displayed in the terminal. */) | |||
| 1753 | #endif | 1753 | #endif |
| 1754 | 1754 | ||
| 1755 | /* Make menu bar update for the Buffers and Frames menus. */ | 1755 | /* Make menu bar update for the Buffers and Frames menus. */ |
| 1756 | windows_or_buffers_changed++; | 1756 | windows_or_buffers_changed = 16; |
| 1757 | 1757 | ||
| 1758 | return Qnil; | 1758 | return Qnil; |
| 1759 | } | 1759 | } |
| @@ -1776,7 +1776,7 @@ If omitted, FRAME defaults to the currently selected frame. */) | |||
| 1776 | #endif | 1776 | #endif |
| 1777 | 1777 | ||
| 1778 | /* Make menu bar update for the Buffers and Frames menus. */ | 1778 | /* Make menu bar update for the Buffers and Frames menus. */ |
| 1779 | windows_or_buffers_changed++; | 1779 | windows_or_buffers_changed = 17; |
| 1780 | 1780 | ||
| 1781 | return Qnil; | 1781 | return Qnil; |
| 1782 | } | 1782 | } |
| @@ -3245,7 +3245,7 @@ x_set_font_backend (struct frame *f, Lisp_Object new_value, Lisp_Object old_valu | |||
| 3245 | XSETFRAME (frame, f); | 3245 | XSETFRAME (frame, f); |
| 3246 | x_set_font (f, Fframe_parameter (frame, Qfont), Qnil); | 3246 | x_set_font (f, Fframe_parameter (frame, Qfont), Qnil); |
| 3247 | ++face_change_count; | 3247 | ++face_change_count; |
| 3248 | ++windows_or_buffers_changed; | 3248 | windows_or_buffers_changed = 18; |
| 3249 | } | 3249 | } |
| 3250 | } | 3250 | } |
| 3251 | 3251 | ||