aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/xt-mouse.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index 87cb8092495..1564034cc7f 100644
--- a/lisp/xt-mouse.el
+++ b/lisp/xt-mouse.el
@@ -124,6 +124,10 @@
124 (goto-char (window-start window)) 124 (goto-char (window-start window))
125 (move-to-window-line (cdr where)) 125 (move-to-window-line (cdr where))
126 (move-to-column (+ (car where) (current-column) 126 (move-to-column (+ (car where) (current-column)
127 (if (string-match "\\` \\*Minibuf"
128 (buffer-name))
129 (- (minibuffer-prompt-width))
130 0)
127 (max 0 (1- (window-hscroll))))) 131 (max 0 (1- (window-hscroll)))))
128 (point)) 132 (point))
129 where)) 133 where))