aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-02-16 23:53:22 +0000
committerKim F. Storm2002-02-16 23:53:22 +0000
commit6018080fa7170653dc77b100363158c78074f2cd (patch)
tree6b0ea7c41b2dbf39129daa9ddadd2d80699ebff6 /src
parente818c17fe3f59d543620c09b54e9facc3ff51d9b (diff)
downloademacs-6018080fa7170653dc77b100363158c78074f2cd.tar.gz
emacs-6018080fa7170653dc77b100363158c78074f2cd.zip
(Vmouse_highlight): New variable.
(syms_of_frame): DEFVAR_LISP it.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c
index 93c68388513..d6789065311 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -79,6 +79,7 @@ Lisp_Object Qtty_color_mode;
79Lisp_Object Vterminal_frame; 79Lisp_Object Vterminal_frame;
80Lisp_Object Vdefault_frame_alist; 80Lisp_Object Vdefault_frame_alist;
81Lisp_Object Vmouse_position_function; 81Lisp_Object Vmouse_position_function;
82Lisp_Object Vmouse_highlight;
82 83
83static void 84static void
84set_menu_bar_lines_1 (window, n) 85set_menu_bar_lines_1 (window, n)
@@ -2535,6 +2536,14 @@ This abnormal hook exists for the benefit of packages like `xt-mouse.el'
2535which need to do mouse handling at the Lisp level. */); 2536which need to do mouse handling at the Lisp level. */);
2536 Vmouse_position_function = Qnil; 2537 Vmouse_position_function = Qnil;
2537 2538
2539 DEFVAR_LISP ("mouse-highlight", &Vmouse_highlight,
2540 doc: /* If non-nil, clickable text is highlighted when mouse is over it.
2541If the value is an integer, highlighting is only shown after moving the
2542mouse, while keyboard input turns off the highlight even when the mouse
2543is over the clickable text. However, the mouse shape still indicates
2544when the mouse is over clickable text. */);
2545 Vmouse_highlight = make_number (1);
2546
2538 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame, 2547 DEFVAR_KBOARD ("default-minibuffer-frame", Vdefault_minibuffer_frame,
2539 doc: /* Minibufferless frames use this frame's minibuffer. 2548 doc: /* Minibufferless frames use this frame's minibuffer.
2540 2549