diff options
| author | Paul Eggert | 2013-12-01 14:33:13 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-12-01 14:33:13 -0800 |
| commit | f224e5002292f7b9b9347147d4b5af913fed516a (patch) | |
| tree | d48239f853e7eedcda8a8f86a044b2a8004fcd1d /src/window.c | |
| parent | 75b09539a4b4e62818d65cb0773587d8a2ac615f (diff) | |
| download | emacs-f224e5002292f7b9b9347147d4b5af913fed516a.tar.gz emacs-f224e5002292f7b9b9347147d4b5af913fed516a.zip | |
Spelling and punctuation fixes.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/window.c b/src/window.c index e62fdad6827..a28449ba1db 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1212,7 +1212,7 @@ coordinates_in_window (register struct window *w, int x, int y) | |||
| 1212 | return ON_NOTHING; | 1212 | return ON_NOTHING; |
| 1213 | 1213 | ||
| 1214 | /* On vertical window divider (which prevails horizontal | 1214 | /* On vertical window divider (which prevails horizontal |
| 1215 | dividers) ? */ | 1215 | dividers)? */ |
| 1216 | if (!WINDOW_RIGHTMOST_P (w) | 1216 | if (!WINDOW_RIGHTMOST_P (w) |
| 1217 | && WINDOW_RIGHT_DIVIDER_WIDTH (w) | 1217 | && WINDOW_RIGHT_DIVIDER_WIDTH (w) |
| 1218 | && x >= right_x - WINDOW_RIGHT_DIVIDER_WIDTH (w) | 1218 | && x >= right_x - WINDOW_RIGHT_DIVIDER_WIDTH (w) |
| @@ -1285,8 +1285,8 @@ coordinates_in_window (register struct window *w, int x, int y) | |||
| 1285 | terminals, the vertical line's x coordinate is right_x. */ | 1285 | terminals, the vertical line's x coordinate is right_x. */ |
| 1286 | else if (!w->pseudo_window_p | 1286 | else if (!w->pseudo_window_p |
| 1287 | && !WINDOW_RIGHTMOST_P (w) | 1287 | && !WINDOW_RIGHTMOST_P (w) |
| 1288 | /* Why check ux if we are not the rightmost window ? Also | 1288 | /* Why check ux if we are not the rightmost window? Also |
| 1289 | shouldn't a pseudo window always be rightmost ? */ | 1289 | shouldn't a pseudo window always be rightmost? */ |
| 1290 | && x > right_x - ux) | 1290 | && x > right_x - ux) |
| 1291 | return ON_VERTICAL_BORDER; | 1291 | return ON_VERTICAL_BORDER; |
| 1292 | 1292 | ||
| @@ -5844,12 +5844,12 @@ struct save_window_data | |||
| 5844 | From `frame-cols' down, the fields are ignored by the GC. */ | 5844 | From `frame-cols' down, the fields are ignored by the GC. */ |
| 5845 | /* We should be able to do without the following two. */ | 5845 | /* We should be able to do without the following two. */ |
| 5846 | int frame_cols, frame_lines; | 5846 | int frame_cols, frame_lines; |
| 5847 | /* These two should get eventually replaced by their pixelized | 5847 | /* These two should get eventually replaced by their pixel |
| 5848 | counterparts. */ | 5848 | counterparts. */ |
| 5849 | int frame_menu_bar_lines, frame_tool_bar_lines; | 5849 | int frame_menu_bar_lines, frame_tool_bar_lines; |
| 5850 | int frame_text_width, frame_text_height; | 5850 | int frame_text_width, frame_text_height; |
| 5851 | /* These are currently unused. We need them as soon as we pixelize | 5851 | /* These are currently unused. We need them as soon as we convert |
| 5852 | them. */ | 5852 | to pixels. */ |
| 5853 | int frame_menu_bar_height, frame_tool_bar_height; | 5853 | int frame_menu_bar_height, frame_tool_bar_height; |
| 5854 | }; | 5854 | }; |
| 5855 | 5855 | ||