Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
1373f3be
Commit
1373f3be
authored
Aug 19, 2009
by
Stefan Monnier
Browse files
(syms_of_keyboard): Default to 5 buttons, which should be
enough for the most common situations. Avoid SET_SYMBOL_VALUE.
parent
c9af0b68
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
11 deletions
+14
-11
src/ChangeLog
src/ChangeLog
+11
-8
src/keyboard.c
src/keyboard.c
+3
-3
No files found.
src/ChangeLog
View file @
1373f3be
2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
* keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
enough for the most common situations. Avoid SET_SYMBOL_VALUE.
2009-08-18 Michael Albinus <michael.albinus@gmx.de>
* dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
New
functions.
* dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
New
functions.
(xd_initialize): Revert change from 2009-08-16.
2009-08-18 Kenichi Handa <handa@m17n.org>
...
...
@@ -19,8 +24,7 @@
2009-08-17 Ken Raeburn <raeburn@raeburn.org>
* lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the
value.
* lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
(XFLOAT_INIT): New macro for storing a float value.
* alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
* fns.c (sxhash): Copy out the value of a float in order to
...
...
@@ -38,8 +42,8 @@
2009-08-15 Michael Albinus <michael.albinus@gmx.de>
* dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
New
functions.
* dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
New
functions.
* lisp.h (xd_pending_messages): Declare.
...
...
@@ -47,8 +51,7 @@
2009-08-15 Chong Yidong <cyd@stupidchicken.com>
* eval.c (Fcalled_interactively_p, Finteractive_p): Doc
fix (Bug#3936).
* eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
* xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
...
...
src/keyboard.c
View file @
1373f3be
...
...
@@ -11973,9 +11973,9 @@ syms_of_keyboard ()
}
}
button_down_location = Fmake_vector (make_number (
1
), Qnil);
button_down_location = Fmake_vector (make_number (
5
), Qnil);
staticpro (&button_down_location);
mouse_syms = Fmake_vector (make_number (
1
), Qnil);
mouse_syms = Fmake_vector (make_number (
5
), Qnil);
staticpro (&mouse_syms);
wheel_syms = Fmake_vector (make_number (4), Qnil);
staticpro (&wheel_syms);
...
...
@@ -12330,7 +12330,7 @@ might happen repeatedly and make Emacs nonfunctional. */);
#endif
Qecho_area_clear_hook = intern ("echo-area-clear-hook");
staticpro (&Qecho_area_clear_hook);
SET_SYMBOL_VALUE
(Qecho_area_clear_hook, Qnil);
Fset
(Qecho_area_clear_hook, Qnil);
DEFVAR_LISP ("lucid-menu-bar-dirty-flag", &Vlucid_menu_bar_dirty_flag,
doc: /* Non-nil means menu bar, specified Lucid style, needs to be recomputed. */);
...
...
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