emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs/src ChangeLog keyboard.c


From: Stefan Monnier
Subject: [Emacs-diffs] emacs/src ChangeLog keyboard.c
Date: Wed, 19 Aug 2009 14:39:38 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Stefan Monnier <monnier>        09/08/19 14:39:38

Modified files:
        src            : ChangeLog keyboard.c 

Log message:
        (syms_of_keyboard): Default to 5 buttons, which should be
        enough for the most common situations.  Avoid SET_SYMBOL_VALUE.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/ChangeLog?cvsroot=emacs&r1=1.7697&r2=1.7698
http://cvs.savannah.gnu.org/viewcvs/emacs/src/keyboard.c?cvsroot=emacs&r1=1.1010&r2=1.1011

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/emacs/emacs/src/ChangeLog,v
retrieving revision 1.7697
retrieving revision 1.7698
diff -u -b -r1.7697 -r1.7698
--- ChangeLog   18 Aug 2009 15:17:02 -0000      1.7697
+++ ChangeLog   19 Aug 2009 14:39:35 -0000      1.7698
@@ -1,7 +1,12 @@
+2009-08-19  Stefan Monnier  <address@hidden>
+
+       * 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  <address@hidden>
 
-       * 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  <address@hidden>
@@ -19,8 +24,7 @@
 
 2009-08-17  Ken Raeburn  <address@hidden>
 
-       * 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  <address@hidden>
 
-       * 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  <address@hidden>
 
-       * 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).
 

Index: keyboard.c
===================================================================
RCS file: /sources/emacs/emacs/src/keyboard.c,v
retrieving revision 1.1010
retrieving revision 1.1011
diff -u -b -r1.1010 -r1.1011
--- keyboard.c  15 Aug 2009 18:30:54 -0000      1.1010
+++ keyboard.c  19 Aug 2009 14:39:37 -0000      1.1011
@@ -11973,9 +11973,9 @@
       }
   }
 
-  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 @@
 #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.  */);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]