Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6018080f
Commit
6018080f
authored
Feb 16, 2002
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Vmouse_highlight): New variable.
(syms_of_frame): DEFVAR_LISP it.
parent
e818c17f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
src/frame.c
src/frame.c
+9
-0
No files found.
src/frame.c
View file @
6018080f
...
...
@@ -79,6 +79,7 @@ Lisp_Object Qtty_color_mode;
Lisp_Object
Vterminal_frame
;
Lisp_Object
Vdefault_frame_alist
;
Lisp_Object
Vmouse_position_function
;
Lisp_Object
Vmouse_highlight
;
static
void
set_menu_bar_lines_1
(
window
,
n
)
...
...
@@ -2535,6 +2536,14 @@ This abnormal hook exists for the benefit of packages like `xt-mouse.el'
which need to do mouse handling at the Lisp level. */
);
Vmouse_position_function
=
Qnil
;
DEFVAR_LISP
(
"mouse-highlight"
,
&
Vmouse_highlight
,
doc:
/* If non-nil, clickable text is highlighted when mouse is over it.
If the value is an integer, highlighting is only shown after moving the
mouse, while keyboard input turns off the highlight even when the mouse
is over the clickable text. However, the mouse shape still indicates
when the mouse is over clickable text. */
);
Vmouse_highlight
=
make_number
(
1
);
DEFVAR_KBOARD
(
"default-minibuffer-frame"
,
Vdefault_minibuffer_frame
,
doc:
/* Minibufferless frames use this frame's minibuffer.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment