Mercurial > emacs
changeset 85295:42dbc38be5d2
Line break fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 14 Oct 2007 18:53:16 +0000 |
parents | bec214ca15b5 |
children | 86224da3fd17 |
files | src/keyboard.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Sun Oct 14 18:52:40 2007 +0000 +++ b/src/keyboard.c Sun Oct 14 18:53:16 2007 +0000 @@ -8432,9 +8432,9 @@ /* 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. */