diff options
| author | Richard M. Stallman | 2007-10-14 18:53:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-10-14 18:53:16 +0000 |
| commit | 219ccf1b799f339600388c533ed5efdb37e49cdb (patch) | |
| tree | c2d37713bcb64bc476bc8c3558c7e03f3b90cb06 /src | |
| parent | 35277b034b9194abe70d437fd73c3792152076e5 (diff) | |
| download | emacs-219ccf1b799f339600388c533ed5efdb37e49cdb.tar.gz emacs-219ccf1b799f339600388c533ed5efdb37e49cdb.zip | |
Line break fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 6 | ||||
| -rw-r--r-- | 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 () | |||
| 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. */ |
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) | |||
| 4956 | 4956 | ||
| 4957 | if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1) | 4957 | if (FRAME_X_DISPLAY_INFO (f)->n_planes == 1) |
| 4958 | disptype = intern ("mono"); | 4958 | disptype = intern ("mono"); |
| 4959 | else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale || | 4959 | else if (FRAME_X_DISPLAY_INFO (f)->visual->class == GrayScale |
| 4960 | FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray) | 4960 | || FRAME_X_DISPLAY_INFO (f)->visual->class == StaticGray) |
| 4961 | disptype = intern ("grayscale"); | 4961 | disptype = intern ("grayscale"); |
| 4962 | else | 4962 | else |
| 4963 | disptype = intern ("color"); | 4963 | disptype = intern ("color"); |