From 219ccf1b799f339600388c533ed5efdb37e49cdb Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 14 Oct 2007 18:53:16 +0000 Subject: [PATCH] Line break fix. --- src/keyboard.c | 6 +++--- src/xfns.c | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/keyboard.c b/src/keyboard.c index 05b749d229a..bd8263f9b04 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -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. */ diff --git a/src/xfns.c b/src/xfns.c index 1ca39d35d66..fd59953fe73 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -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"); -- 2.39.5