aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-02-20 23:45:51 +0000
committerKim F. Storm2002-02-20 23:45:51 +0000
commit2a28d4719c12fc5e1d383c1300131d536e6b11b2 (patch)
tree77bf30adaae8ac5cc9b715fbb0bb0071ec001c14 /src
parent15fdc2e38b2a87a1a454c2e258faaa7a6bff6bc8 (diff)
downloademacs-2a28d4719c12fc5e1d383c1300131d536e6b11b2.tar.gz
emacs-2a28d4719c12fc5e1d383c1300131d536e6b11b2.zip
(syms_of_frame): Change mouse-highlight default to t.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/frame.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 04348f4fe19..9bd94125c7e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,4 +1,6 @@
12002-02-20 Kim F. Storm <storm@cua.dk> 12002-02-21 Kim F. Storm <storm@cua.dk>
2
3 * frame.c (syms_of_frame): Change mouse-highlight default to t.
2 4
3 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]: Corrected 5 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]: Corrected
4 composing of language-change event. 6 composing of language-change event.
diff --git a/src/frame.c b/src/frame.c
index d6789065311..e4e3e3b4c3d 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -2542,7 +2542,7 @@ If the value is an integer, highlighting is only shown after moving the
2542mouse, while keyboard input turns off the highlight even when the mouse 2542mouse, while keyboard input turns off the highlight even when the mouse
2543is over the clickable text. However, the mouse shape still indicates 2543is over the clickable text. However, the mouse shape still indicates
2544when the mouse is over clickable text. */); 2544when the mouse is over clickable text. */);
2545 Vmouse_highlight = make_number (1); 2545 Vmouse_highlight = Qt;
2546 2546
2547 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame, 2547 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
2548 doc: /* Minibufferless frames use this frame's minibuffer. 2548 doc: /* Minibufferless frames use this frame's minibuffer.