aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2001-03-23 04:24:23 +0000
committerStefan Monnier2001-03-23 04:24:23 +0000
commiteb49081e3efec8494567dfed0e879dfd782b630c (patch)
tree15f540ce2725e04e9051d6e633e8383508e5bf91 /src
parent799fc921d7bbf0f2e085e393a887bc065ec231d2 (diff)
downloademacs-eb49081e3efec8494567dfed0e879dfd782b630c.tar.gz
emacs-eb49081e3efec8494567dfed0e879dfd782b630c.zip
(note_mouse_highlight): Dec the int, not the Lisp_Object.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 0c7cac6d0d0..4996f6e4dfe 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -6908,7 +6908,7 @@ note_mouse_highlight (f, x, y)
6908 if (NILP (b)) 6908 if (NILP (b))
6909 b = make_number (0); 6909 b = make_number (0);
6910 if (NILP (e)) 6910 if (NILP (e))
6911 e = make_number (XSTRING (object)->size) - 1; 6911 e = make_number (XSTRING (object)->size - 1);
6912 fast_find_string_pos (w, XINT (b), object, 6912 fast_find_string_pos (w, XINT (b), object,
6913 &dpyinfo->mouse_face_beg_col, 6913 &dpyinfo->mouse_face_beg_col,
6914 &dpyinfo->mouse_face_beg_row, 6914 &dpyinfo->mouse_face_beg_row,