aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier2011-06-01 11:28:54 -0300
committerStefan Monnier2011-06-01 11:28:54 -0300
commitec8bd86f04daf51f8a65ed5380975185e16c9e38 (patch)
tree8814610a4cfb58ec00b34d690967e675ad51bfb6 /lisp
parent2462470b9ec3876a54f1ce4c70561c478ceaf714 (diff)
downloademacs-ec8bd86f04daf51f8a65ed5380975185e16c9e38.tar.gz
emacs-ec8bd86f04daf51f8a65ed5380975185e16c9e38.zip
* lisp/thingatpt.el (forward-whitespace): Typo.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/thingatpt.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/thingatpt.el b/lisp/thingatpt.el
index 22370aa9161..8f797d13103 100644
--- a/lisp/thingatpt.el
+++ b/lisp/thingatpt.el
@@ -402,7 +402,7 @@ with angle brackets.")
402 (re-search-forward "[ \t]+\\|\n" nil 'move arg) 402 (re-search-forward "[ \t]+\\|\n" nil 'move arg)
403 (while (< arg 0) 403 (while (< arg 0)
404 (if (re-search-backward "[ \t]+\\|\n" nil 'move) 404 (if (re-search-backward "[ \t]+\\|\n" nil 'move)
405 (or (eq (char-after (match-beginning 0)) \n) 405 (or (eq (char-after (match-beginning 0)) ?\n)
406 (skip-chars-backward " \t"))) 406 (skip-chars-backward " \t")))
407 (setq arg (1+ arg))))) 407 (setq arg (1+ arg)))))
408 408