From: Chong Yidong Date: Wed, 8 Oct 2008 15:52:43 +0000 (+0000) Subject: (json-skip-whitespace): Fix last change. X-Git-Tag: emacs-pretest-23.0.90~2597 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b111d5d0542844e7043f28a2114dec29f3963e88;p=emacs.git (json-skip-whitespace): Fix last change. --- diff --git a/lisp/json.el b/lisp/json.el index 203ec596980..db826f72405 100644 --- a/lisp/json.el +++ b/lisp/json.el @@ -140,7 +140,7 @@ this around your call to `json-read' instead of `setq'ing it.") (defun json-skip-whitespace () "Skip past the whitespace at point." - (skip-syntax-forward " ")) + (skip-chars-forward "\t\r\n\f\b "))