mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-09 05:01:02 -08:00
(store_in_keymap): Change def' arg to not be register'.
Seems to trigger a bug in gcc-amd64 4.0.2 20051125 (Red Hat 4.0.2-8): keymap.c:895: error: address of register variable `def' requested.
This commit is contained in:
parent
351b838f61
commit
e89e07ccac
2 changed files with 7 additions and 6 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2006-04-26 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* keymap.c (store_in_keymap): Change `def' arg to not be `register'.
|
||||
Seems to trigger a bug in gcc-amd64 4.0.2 20051125 (Red Hat 4.0.2-8):
|
||||
keymap.c:895: error: address of register variable `def' requested.
|
||||
|
||||
2006-04-26 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* w32term.c (construct_mouse_wheel): Handle negative coordinates.
|
||||
|
|
@ -992,11 +998,6 @@
|
|||
(mac_set_clip_rectangles): When resetting clip region, make it
|
||||
empty instead of disposing of it.
|
||||
|
||||
2006-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* keymap.c (store_in_keymap): Change `def' arg to not be `register'.
|
||||
Seems to trigger a bug in gcc-amd64 4.0.2 20051125 (Red Hat 4.0.2-8).
|
||||
|
||||
2006-02-20 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* Makefile.in: Add fringe.elc to WINDOW_SUPPORT.
|
||||
|
|
|
|||
|
|
@ -866,7 +866,7 @@ static Lisp_Object
|
|||
store_in_keymap (keymap, idx, def)
|
||||
Lisp_Object keymap;
|
||||
register Lisp_Object idx;
|
||||
register Lisp_Object def;
|
||||
Lisp_Object def;
|
||||
{
|
||||
/* Flush any reverse-map cache. */
|
||||
where_is_cache = Qnil;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue