From: Stefan Monnier Date: Wed, 1 Jun 2011 14:28:54 +0000 (-0300) Subject: * lisp/thingatpt.el (forward-whitespace): Typo. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~59 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec8bd86f04daf51f8a65ed5380975185e16c9e38;p=emacs.git * lisp/thingatpt.el (forward-whitespace): Typo. --- 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.") (re-search-forward "[ \t]+\\|\n" nil 'move arg) (while (< arg 0) (if (re-search-backward "[ \t]+\\|\n" nil 'move) - (or (eq (char-after (match-beginning 0)) \n) + (or (eq (char-after (match-beginning 0)) ?\n) (skip-chars-backward " \t"))) (setq arg (1+ arg)))))