aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-06-27 07:30:14 +0000
committerGlenn Morris2008-06-27 07:30:14 +0000
commitcdd1f23bbfdfb6ff97e986cc127647dc712b25b2 (patch)
tree37ebdf127e00a976305aad18c36a2e061120acc5
parent6772c8e169a6a56ee387373a00a65bd3a3070725 (diff)
downloademacs-cdd1f23bbfdfb6ff97e986cc127647dc712b25b2.tar.gz
emacs-cdd1f23bbfdfb6ff97e986cc127647dc712b25b2.zip
Fix comment typo.
-rw-r--r--lisp/mouse.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mouse.el b/lisp/mouse.el
index ce1bc30b1d4..524d45271a0 100644
--- a/lisp/mouse.el
+++ b/lisp/mouse.el
@@ -1110,8 +1110,7 @@ If DIR is positive skip forward; if negative, skip backward."
1110 ;; Here, we can't use skip-syntax-forward/backward because 1110 ;; Here, we can't use skip-syntax-forward/backward because
1111 ;; they don't pay attention to word-separating-categories, 1111 ;; they don't pay attention to word-separating-categories,
1112 ;; and thus they will skip over a true word boundary. So, 1112 ;; and thus they will skip over a true word boundary. So,
1113 ;; we simularte the original behaviour by using 1113 ;; we simulate the original behaviour by using forward-word.
1114 ;; forward-word.
1115 (if (< dir 0) 1114 (if (< dir 0)
1116 (if (not (looking-at "\\<")) 1115 (if (not (looking-at "\\<"))
1117 (forward-word -1)) 1116 (forward-word -1))