]> git.eshelyaron.com Git - emacs.git/commitdiff
Line break fix.
authorRichard M. Stallman <rms@gnu.org>
Sun, 14 Oct 2007 18:53:16 +0000 (18:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 14 Oct 2007 18:53:16 +0000 (18:53 +0000)
src/keyboard.c
src/xfns.c

index 05b749d229a78406cd4b4bb5ad5f5ad3180942ff..bd8263f9b040dff05dae300a7899dbb955e06f2b 100644 (file)
@@ -8432,9 +8432,9 @@ append_tool_bar_item ()
   /* Enlarge tool_bar_items_vector if necessary.  */
   if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
       >= XVECTOR (tool_bar_items_vector)->size)
-    tool_bar_items_vector =
-      larger_vector (tool_bar_items_vector,
-                    2 * XVECTOR (tool_bar_items_vector)->size, Qnil);
+    tool_bar_items_vector
+      larger_vector (tool_bar_items_vector,
+                      2 * XVECTOR (tool_bar_items_vector)->size, Qnil);
 
   /* Append entries from tool_bar_item_properties to the end of
      tool_bar_items_vector.  */
index 1ca39d35d665788440e468784a9f7b978701ae42..fd59953fe738172e2462e02f31cf0b77e0e6e143 100644 (file)
@@ -4956,8 +4956,8 @@ x_create_tip_frame (dpyinfo, parms, text)
 
     if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1)
       disptype = intern ("mono");
-    else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale ||
-             FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
+    else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale
+             || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray)
       disptype = intern ("grayscale");
     else
       disptype = intern ("color");