aboutsummaryrefslogtreecommitdiffstats
path: root/src/keyboard.c
diff options
context:
space:
mode:
authorRichard M. Stallman2007-10-14 18:53:16 +0000
committerRichard M. Stallman2007-10-14 18:53:16 +0000
commit219ccf1b799f339600388c533ed5efdb37e49cdb (patch)
treec2d37713bcb64bc476bc8c3558c7e03f3b90cb06 /src/keyboard.c
parent35277b034b9194abe70d437fd73c3792152076e5 (diff)
downloademacs-219ccf1b799f339600388c533ed5efdb37e49cdb.tar.gz
emacs-219ccf1b799f339600388c533ed5efdb37e49cdb.zip
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 05b749d229a..bd8263f9b04 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -8432,9 +8432,9 @@ append_tool_bar_item ()
8432 /* Enlarge tool_bar_items_vector if necessary. */ 8432 /* Enlarge tool_bar_items_vector if necessary. */
8433 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS 8433 if (ntool_bar_items + TOOL_BAR_ITEM_NSLOTS
8434 >= XVECTOR (tool_bar_items_vector)->size) 8434 >= XVECTOR (tool_bar_items_vector)->size)
8435 tool_bar_items_vector = 8435 tool_bar_items_vector
8436 larger_vector (tool_bar_items_vector, 8436 = larger_vector (tool_bar_items_vector,
8437 2 * XVECTOR (tool_bar_items_vector)->size, Qnil); 8437 2 * XVECTOR (tool_bar_items_vector)->size, Qnil);
8438 8438
8439 /* Append entries from tool_bar_item_properties to the end of 8439 /* Append entries from tool_bar_item_properties to the end of
8440 tool_bar_items_vector. */ 8440 tool_bar_items_vector. */