diff options
| author | Eli Zaretskii | 2007-10-13 20:49:53 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-10-13 20:49:53 +0000 |
| commit | 96a5affbc969c20f23a0dccd79b9b717834e6f6e (patch) | |
| tree | 93a3cc05054c7f668fe895c321e96870494640df /src | |
| parent | 2a1aad572bae87dedaa3f4478dae7b0737be180f (diff) | |
| download | emacs-96a5affbc969c20f23a0dccd79b9b717834e6f6e.tar.gz emacs-96a5affbc969c20f23a0dccd79b9b717834e6f6e.zip | |
(append_tool_bar_item): Reformat last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/keyboard.c | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e8d187ec1d8..3d8e6307f42 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-10-13 Eli Zaretskii <eliz@gnu.org> | 1 | 2007-10-13 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * ccl.c (Fregister_code_conversion_map): | ||
| 4 | * keyboard.c (append_tool_bar_item): Reformat last change. | ||
| 5 | |||
| 3 | * lisp.h (eabs): Rename from `abs'. All callers changed. | 6 | * lisp.h (eabs): Rename from `abs'. All callers changed. |
| 4 | 7 | ||
| 5 | 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru> | 8 | 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru> |
diff --git a/src/keyboard.c b/src/keyboard.c index b2fa38d049c..05b749d229a 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -8432,8 +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 = larger_vector | 8435 | tool_bar_items_vector = |
| 8436 | (tool_bar_items_vector, 2 * XVECTOR (tool_bar_items_vector)->size, Qnil); | 8436 | larger_vector (tool_bar_items_vector, |
| 8437 | 2 * XVECTOR (tool_bar_items_vector)->size, Qnil); | ||
| 8437 | 8438 | ||
| 8438 | /* Append entries from tool_bar_item_properties to the end of | 8439 | /* Append entries from tool_bar_item_properties to the end of |
| 8439 | tool_bar_items_vector. */ | 8440 | tool_bar_items_vector. */ |