diff options
| author | Juanma Barranquero | 2005-06-24 09:32:11 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-06-24 09:32:11 +0000 |
| commit | 0afd087155141996df48afd01af66c7aa1669c8e (patch) | |
| tree | fa6c47476c808366f8b9e31fdf06e5c2ca3ef230 /src | |
| parent | c4f6ca24744ab39f34e9ff19741b76a049769ef5 (diff) | |
| download | emacs-0afd087155141996df48afd01af66c7aa1669c8e.tar.gz emacs-0afd087155141996df48afd01af66c7aa1669c8e.zip | |
(syms_of_xdisp) <nobreak-char-display>: Doc fix.
(syms_of_xdisp) <void-text-area-pointer>: Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 1bb2b4292c0..5bb157cae73 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -21660,7 +21660,7 @@ note_mouse_highlight (f, x, y) | |||
| 21660 | /* If we were displaying active text in another window, clear that. | 21660 | /* If we were displaying active text in another window, clear that. |
| 21661 | Also clear if we move out of text area in same window. */ | 21661 | Also clear if we move out of text area in same window. */ |
| 21662 | if (! EQ (window, dpyinfo->mouse_face_window) | 21662 | if (! EQ (window, dpyinfo->mouse_face_window) |
| 21663 | || (part != ON_TEXT && part != ON_MODE_LINE && part != ON_HEADER_LINE | 21663 | || (part != ON_TEXT && part != ON_MODE_LINE && part != ON_HEADER_LINE |
| 21664 | && !NILP (dpyinfo->mouse_face_window))) | 21664 | && !NILP (dpyinfo->mouse_face_window))) |
| 21665 | clear_mouse_face (dpyinfo); | 21665 | clear_mouse_face (dpyinfo); |
| 21666 | 21666 | ||
| @@ -22885,17 +22885,17 @@ The face used for trailing whitespace is `trailing-whitespace'. */); | |||
| 22885 | 22885 | ||
| 22886 | DEFVAR_LISP ("nobreak-char-display", &Vnobreak_char_display, | 22886 | DEFVAR_LISP ("nobreak-char-display", &Vnobreak_char_display, |
| 22887 | doc: /* *Control highlighting of nobreak space and soft hyphen. | 22887 | doc: /* *Control highlighting of nobreak space and soft hyphen. |
| 22888 | t means highlight the character itself (for nobreak space, | 22888 | A value of t means highlight the character itself (for nobreak space, |
| 22889 | use face `nobreak-space'. | 22889 | use face `nobreak-space'). |
| 22890 | nil means no highlighting. | 22890 | A value of nil means no highlighting. |
| 22891 | other values mean display the escape glyph followed by an ordinary | 22891 | Other values mean display the escape glyph followed by an ordinary |
| 22892 | space or ordinary hyphen. */); | 22892 | space or ordinary hyphen. */); |
| 22893 | Vnobreak_char_display = Qt; | 22893 | Vnobreak_char_display = Qt; |
| 22894 | 22894 | ||
| 22895 | DEFVAR_LISP ("void-text-area-pointer", &Vvoid_text_area_pointer, | 22895 | DEFVAR_LISP ("void-text-area-pointer", &Vvoid_text_area_pointer, |
| 22896 | doc: /* *The pointer shape to show in void text areas. | 22896 | doc: /* *The pointer shape to show in void text areas. |
| 22897 | Nil means to show the text pointer. Other options are `arrow', `text', | 22897 | A value of nil means to show the text pointer. Other options are `arrow', |
| 22898 | `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */); | 22898 | `text', `hand', `vdrag', `hdrag', `modeline', and `hourglass'. */); |
| 22899 | Vvoid_text_area_pointer = Qarrow; | 22899 | Vvoid_text_area_pointer = Qarrow; |
| 22900 | 22900 | ||
| 22901 | DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay, | 22901 | DEFVAR_LISP ("inhibit-redisplay", &Vinhibit_redisplay, |