aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2012-06-03 17:59:00 +0800
committerChong Yidong2012-06-03 17:59:00 +0800
commit1c476a0a7ffcbad019480b9057c17501c445eefb (patch)
tree3057c1d39ba5e82213c2dbf1f09513eb2b31f41f /src
parent5f2c76c6cee2b5d2d84ffd409839fd58d2ad16fa (diff)
downloademacs-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.c2
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);