aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Kangas2021-11-19 07:00:24 +0100
committerStefan Kangas2021-11-19 07:00:24 +0100
commitc6d5fccc92fca76bf81dcfdca37ac9b0f96c1d81 (patch)
tree8c880fa3f7c7dc807e0a4cf3b2473a2b365b7777 /src
parent7138e69fdcf2d9f8cfe6bebf750f7f04b6ee6286 (diff)
parent02853edba795b0d47201977d3b500e8a46ed5e0f (diff)
downloademacs-c6d5fccc92fca76bf81dcfdca37ac9b0f96c1d81.tar.gz
emacs-c6d5fccc92fca76bf81dcfdca37ac9b0f96c1d81.zip
Merge from origin/emacs-28
02853edba7 Fix sorting of menus in `context-menu-local' (bug#50067). 14271d050a Fix flyspell-correct-word selected from context menu opene... bf824843f4 * lisp/repeat.el (describe-repeat-maps): Print all bound k... 6fc94fb99e * lisp/tab-bar.el: Use 'mouse-1' for history buttons like ... 5eeaf85767 Improve documentation of window hooks 7404f4b4e0 Improve doc string of 'highlight-nonselected-windows'
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index ef49297e0fe..6c70ce60bb5 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -35370,7 +35370,9 @@ line number may be omitted from the mode line. */);
35370 line_number_display_limit_width = 200; 35370 line_number_display_limit_width = 200;
35371 35371
35372 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows, 35372 DEFVAR_BOOL ("highlight-nonselected-windows", highlight_nonselected_windows,
35373 doc: /* Non-nil means highlight region even in nonselected windows. */); 35373 doc: /* Non-nil means highlight active region even in nonselected windows.
35374When nil (the default), the active region is only highlighted when
35375the window is selected. */);
35374 highlight_nonselected_windows = false; 35376 highlight_nonselected_windows = false;
35375 35377
35376 DEFVAR_BOOL ("multiple-frames", multiple_frames, 35378 DEFVAR_BOOL ("multiple-frames", multiple_frames,