emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r104019: src/keyboard.c (QCrtl): Rena


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r104019: src/keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
Date: Tue, 26 Apr 2011 16:02:55 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 104019
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Tue 2011-04-26 16:02:55 +0200
message:
  src/keyboard.c (QCrtl): Rename from Qrtl.  All uses changed.
modified:
  src/ChangeLog
  src/keyboard.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2011-04-26 12:59:12 +0000
+++ b/src/ChangeLog     2011-04-26 14:02:55 +0000
@@ -1,3 +1,7 @@
+2011-04-26  Juanma Barranquero  <address@hidden>
+
+       * keyboard.c (QCrtl): Rename from Qrtl.  All uses changed.
+
 2011-04-26  Teodor Zlatanov  <address@hidden>
 
        * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
@@ -7,7 +11,7 @@
 2011-04-26  Daniel Colascione <address@hidden>
 
        * lisp.h (Qdebug): List symbol.
-       * eval.c (Qdebug): restore global linkage.
+       * eval.c (Qdebug): Restore global linkage.
        * keyboard.c (debug-on-event): New variable.
        (handle_user_signal): Break into debugger when debug-on-event
        matches the current signal symbol.
@@ -2530,7 +2534,7 @@
        Call gdk_x11_window_lookup_for_display.
        (xg_set_widget_bg): New function.
        (delete_cb): New function.
-       (xg_create_frame_widgets): connect delete-event to delete_cb.
+       (xg_create_frame_widgets): Connect delete-event to delete_cb.
        Call xg_set_widget_bg.  Only set backgrund pixmap for ! HAVE_GTK3
        (xg_set_background_color): Call xg_set_widget_bg.
        (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.

=== modified file 'src/keyboard.c'
--- a/src/keyboard.c    2011-04-26 11:26:05 +0000
+++ b/src/keyboard.c    2011-04-26 14:02:55 +0000
@@ -7923,7 +7923,7 @@
 /* The symbols `:image' and `:rtl'.  */
 
 static Lisp_Object QCimage;
-static Lisp_Object Qrtl;
+static Lisp_Object QCrtl;
 
 /* Function prototypes.  */
 
@@ -8240,7 +8240,7 @@
        /* Value is either a single image specification or a vector
           of 4 such specifications for the different button states.  */
        PROP (TOOL_BAR_ITEM_IMAGES) = value;
-      else if (EQ (ikey, Qrtl))
+      else if (EQ (ikey, QCrtl))
         /* ':rtl STRING' */
        PROP (TOOL_BAR_ITEM_RTL_IMAGE) = value;
     }
@@ -11475,7 +11475,7 @@
   /* Tool-bars.  */
   DEFSYM (QCimage, ":image");
   DEFSYM (Qhelp_echo, "help-echo");
-  DEFSYM (Qrtl, ":rtl");
+  DEFSYM (QCrtl, ":rtl");
 
   staticpro (&item_properties);
   item_properties = Qnil;


reply via email to

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