From: Glenn Morris Date: Fri, 27 Jun 2008 07:30:14 +0000 (+0000) Subject: Fix comment typo. X-Git-Tag: emacs-pretest-23.0.90~4437 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cdd1f23bbfdfb6ff97e986cc127647dc712b25b2;p=emacs.git Fix comment typo. --- 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." ;; Here, we can't use skip-syntax-forward/backward because ;; they don't pay attention to word-separating-categories, ;; and thus they will skip over a true word boundary. So, - ;; we simularte the original behaviour by using - ;; forward-word. + ;; we simulate the original behaviour by using forward-word. (if (< dir 0) (if (not (looking-at "\\<")) (forward-word -1))