diff options
| author | Eli Zaretskii | 2009-10-10 16:39:05 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2009-10-10 16:39:05 +0000 |
| commit | ec6870e05f539c42527a5b963b2444380577f6a2 (patch) | |
| tree | 53c9e62b242cf50ca29bae78beb7368e20d10689 /src | |
| parent | 997d1c4dd028920ec844ba4ebc63ee7d429c62e5 (diff) | |
| download | emacs-ec6870e05f539c42527a5b963b2444380577f6a2.tar.gz emacs-ec6870e05f539c42527a5b963b2444380577f6a2.zip | |
(try_window_id): Fix typos in comments.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 614c349cfb4..cad27a9aed4 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -14879,7 +14879,7 @@ try_window_id (w) | |||
| 14879 | || !WINDOW_FULL_WIDTH_P (w))) | 14879 | || !WINDOW_FULL_WIDTH_P (w))) |
| 14880 | GIVE_UP (4); | 14880 | GIVE_UP (4); |
| 14881 | 14881 | ||
| 14882 | /* Give up if point is not known NOT to appear in W. */ | 14882 | /* Give up if point is known NOT to appear in W. */ |
| 14883 | if (PT < CHARPOS (start)) | 14883 | if (PT < CHARPOS (start)) |
| 14884 | GIVE_UP (5); | 14884 | GIVE_UP (5); |
| 14885 | 14885 | ||
| @@ -14909,7 +14909,7 @@ try_window_id (w) | |||
| 14909 | if (!NILP (w->region_showing)) | 14909 | if (!NILP (w->region_showing)) |
| 14910 | GIVE_UP (10); | 14910 | GIVE_UP (10); |
| 14911 | 14911 | ||
| 14912 | /* Can't use this if overlay arrow position and or string have | 14912 | /* Can't use this if overlay arrow position and/or string have |
| 14913 | changed. */ | 14913 | changed. */ |
| 14914 | if (overlay_arrows_changed_p ()) | 14914 | if (overlay_arrows_changed_p ()) |
| 14915 | GIVE_UP (12); | 14915 | GIVE_UP (12); |