diff options
| author | Chong Yidong | 2012-06-03 17:59:00 +0800 |
|---|---|---|
| committer | Chong Yidong | 2012-06-03 17:59:00 +0800 |
| commit | 1c476a0a7ffcbad019480b9057c17501c445eefb (patch) | |
| tree | 3057c1d39ba5e82213c2dbf1f09513eb2b31f41f /src | |
| parent | 5f2c76c6cee2b5d2d84ffd409839fd58d2ad16fa (diff) | |
| download | emacs-1c476a0a7ffcbad019480b9057c17501c445eefb.tar.gz emacs-1c476a0a7ffcbad019480b9057c17501c445eefb.zip | |
* xdisp.c (note_mode_line_or_margin_highlight): Fix last change.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 6eb7f50c6fc..8a1d83dc8e6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -27066,7 +27066,7 @@ note_mode_line_or_margin_highlight (Lisp_Object window, int x, int y, | |||
| 27066 | if (STRINGP (string)) | 27066 | if (STRINGP (string)) |
| 27067 | help = Fget_text_property (pos, Qhelp_echo, string); | 27067 | help = Fget_text_property (pos, Qhelp_echo, string); |
| 27068 | 27068 | ||
| 27069 | if (STRINGP (help)) | 27069 | if (!NILP (help)) |
| 27070 | { | 27070 | { |
| 27071 | help_echo_string = help; | 27071 | help_echo_string = help; |
| 27072 | XSETWINDOW (help_echo_window, w); | 27072 | XSETWINDOW (help_echo_window, w); |