diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 9 |
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; | |||
| 79 | Lisp_Object Vterminal_frame; | 79 | Lisp_Object Vterminal_frame; |
| 80 | Lisp_Object Vdefault_frame_alist; | 80 | Lisp_Object Vdefault_frame_alist; |
| 81 | Lisp_Object Vmouse_position_function; | 81 | Lisp_Object Vmouse_position_function; |
| 82 | Lisp_Object Vmouse_highlight; | ||
| 82 | 83 | ||
| 83 | static void | 84 | static void |
| 84 | set_menu_bar_lines_1 (window, n) | 85 | set_menu_bar_lines_1 (window, n) |
| @@ -2535,6 +2536,14 @@ This abnormal hook exists for the benefit of packages like `xt-mouse.el' | |||
| 2535 | which need to do mouse handling at the Lisp level. */); | 2536 | which 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. | ||
| 2541 | If the value is an integer, highlighting is only shown after moving the | ||
| 2542 | mouse, while keyboard input turns off the highlight even when the mouse | ||
| 2543 | is over the clickable text. However, the mouse shape still indicates | ||
| 2544 | when 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 | ||