diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2022-07-02 12:01:18 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2022-07-02 13:32:41 +0200 |
commit | 8d68760ddee3690b4312fdb5d85210cb21b4eb7d (patch) | |
tree | 9332368efe35507bd11da1a743628871fc983e0a /lisp/mouse.el | |
parent | c5aec9b10d709b91a0188b705b653bd2a59fff2d (diff) | |
download | emacs-8d68760ddee3690b4312fdb5d85210cb21b4eb7d.tar.gz emacs-8d68760ddee3690b4312fdb5d85210cb21b4eb7d.tar.bz2 emacs-8d68760ddee3690b4312fdb5d85210cb21b4eb7d.zip |
; Fix typos.
Diffstat (limited to 'lisp/mouse.el')
-rw-r--r-- | lisp/mouse.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el index 98e49c3598f..ddcb51aecf2 100644 --- a/lisp/mouse.el +++ b/lisp/mouse.el @@ -1200,7 +1200,7 @@ frame with the mouse." (<= (- right parent-right) snap-width) snap-x (<= (- last-x snap-x) snap-width)) ;; Stay snapped when the mouse moved rightward but - ;; not more more than `snap-width' pixels from the + ;; not more than `snap-width' pixels from the ;; time FRAME snapped. (setq left (- parent-right native-width))) (t @@ -1222,7 +1222,7 @@ frame with the mouse." (<= (- parent-top top) snap-width) snap-y (<= (- snap-y last-y) snap-width)) ;; Stay snapped when the mouse moved upward but - ;; not more more than `snap-width' pixels from the + ;; not more than `snap-width' pixels from the ;; time FRAME snapped. (setq top parent-top)) (t @@ -1244,7 +1244,7 @@ frame with the mouse." (<= (- bottom parent-bottom) snap-width) snap-y (<= (- last-y snap-y) snap-width)) ;; Stay snapped when the mouse moved downward but - ;; not more more than `snap-width' pixels from the + ;; not more than `snap-width' pixels from the ;; time FRAME snapped. (setq top (- parent-bottom native-height))) (t |