emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r100209: Fix picture-mouse-set-poi


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r100209: Fix picture-mouse-set-point calculation (Bug#7390).
Date: Sat, 13 Nov 2010 16:01:10 -0500
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100209
committer: Chong Yidong <address@hidden>
branch nick: emacs-23
timestamp: Sat 2010-11-13 16:01:10 -0500
message:
  Fix picture-mouse-set-point calculation (Bug#7390).
  * lisp/textmodes/picture.el (picture-mouse-set-point): Don't use
  posn-col-row; explicitly compute the motion based on the posn at
  the window-start (Bug#7390).
modified:
  lisp/ChangeLog
  lisp/textmodes/picture.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-11-13 10:08:21 +0000
+++ b/lisp/ChangeLog    2010-11-13 21:01:10 +0000
@@ -1,3 +1,9 @@
+2010-11-13  Chong Yidong  <address@hidden>
+
+       * textmodes/picture.el (picture-mouse-set-point): Don't use
+       posn-col-row; explicitly compute the motion based on the posn at
+       the window-start (Bug#7390).
+
 2010-11-13  Michael Albinus  <address@hidden>
 
        * net/tramp.el (tramp-remote-coding-commands): Add an alternative

=== modified file 'lisp/textmodes/picture.el'
--- a/lisp/textmodes/picture.el 2010-01-13 08:35:10 +0000
+++ b/lisp/textmodes/picture.el 2010-11-13 21:01:10 +0000
@@ -226,16 +226,30 @@
   (picture-motion (- arg)))
 
 (defun picture-mouse-set-point (event)
-  "Move point to the position clicked on, making whitespace if necessary."
+  "Move point to the position of EVENT, making whitespace if necessary."
   (interactive "e")
-  (let* ((pos (posn-col-row (event-start event)))
-        (x (car pos))
-        (y (cdr pos))
-        (current-row (count-lines (window-start) (line-beginning-position))))
-    (unless (equal x (current-column))
-      (picture-forward-column (- x (current-column))))
-    (unless (equal y current-row)
-      (picture-move-down (- y current-row)))))
+  (let ((position (event-start event)))
+    (unless (posn-area position) ; Ignore EVENT unless in text area
+      (let* ((window (posn-window position))
+            (frame  (if (framep window) window (window-frame window)))
+            (pair   (posn-x-y position))
+            (start-pos (window-start window))
+            (start-pair (posn-x-y (posn-at-point start-pos)))
+            (dx (- (car pair) (car start-pair)))
+            (dy (- (cdr pair) (cdr start-pair)))
+            (char-ht (frame-char-height frame))
+            (spacing (when (display-graphic-p frame)
+                       (or (with-current-buffer (window-buffer window)
+                             line-spacing)
+                           (frame-parameter frame 'line-spacing))))
+            rows cols)
+       (cond ((floatp spacing)
+              (setq spacing (truncate (* spacing char-ht))))
+             ((null spacing)
+              (setq spacing 0)))
+       (goto-char start-pos)
+       (picture-move-down      (/ dy (+ char-ht spacing)))
+       (picture-forward-column (/ dx (frame-char-width frame)))))))
 
 
 ;; Picture insertion and deletion.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]