aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2007-10-14 18:53:16 +0000
committerRichard M. Stallman <[email protected]>2007-10-14 18:53:16 +0000
commit219ccf1b799f339600388c533ed5efdb37e49cdb (patch)
treec2d37713bcb64bc476bc8c3558c7e03f3b90cb06 /src/keyboard.c
parent35277b034b9194abe70d437fd73c3792152076e5 (diff)
Line break fix.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r--src/keyboard.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 05b749d229..bd8263f9b0 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. */