diff options
author | Chong Yidong <cyd@gnu.org> | 2012-06-03 17:59:00 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-06-03 17:59:00 +0800 |
commit | 1c476a0a7ffcbad019480b9057c17501c445eefb (patch) | |
tree | 3057c1d39ba5e82213c2dbf1f09513eb2b31f41f /src/xdisp.c | |
parent | 5f2c76c6cee2b5d2d84ffd409839fd58d2ad16fa (diff) | |
download | emacs-1c476a0a7ffcbad019480b9057c17501c445eefb.tar.gz |
* xdisp.c (note_mode_line_or_margin_highlight): Fix last change.
Diffstat (limited to 'src/xdisp.c')
-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, if (STRINGP (string)) help = Fget_text_property (pos, Qhelp_echo, string); - if (STRINGP (help)) + if (!NILP (help)) { help_echo_string = help; XSETWINDOW (help_echo_window, w); |