1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-09 05:01:02 -08:00

* keyboard.c (Qleft, Qright): Remove duplicate definitions.

These were already defined in buffer.c, and the duplicate
definitions cause problems on platforms like 'gcc -fno-common'.
Reported by Peter Dyballa in: http://bugs.gnu.org/9927#137
This commit is contained in:
Paul Eggert 2014-10-05 16:18:31 -07:00
parent d589d25223
commit 918b5def3f
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2014-10-05 Paul Eggert <eggert@cs.ucla.edu>
* keyboard.c (Qleft, Qright): Remove duplicate definitions (Bug#9927).
These were already defined in buffer.c, and the duplicate
definitions cause problems on platforms like 'gcc -fno-common'.
Reported by Peter Dyballa in: http://bugs.gnu.org/9927#137
2014-10-05 Jan Djärv <jan.h.d@swipnet.se>
* nsterm.m (updateFrameSize:): Only call update_frame_tool_bar

View file

@ -5217,7 +5217,6 @@ static const char *const lispy_drag_n_drop_names[] =
static Lisp_Object Qabove_handle, Qhandle, Qbelow_handle;
static Lisp_Object Qbefore_handle, Qhorizontal_handle, Qafter_handle;
Lisp_Object Qup, Qdown, Qtop, Qbottom;
Lisp_Object Qleft, Qright;
static Lisp_Object Qleftmost, Qrightmost;
static Lisp_Object Qend_scroll;
static Lisp_Object Qratio;