]> git.eshelyaron.com Git - emacs.git/commitdiff
(json-skip-whitespace): Fix last change.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 8 Oct 2008 15:52:43 +0000 (15:52 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 8 Oct 2008 15:52:43 +0000 (15:52 +0000)
lisp/json.el

index 203ec596980def72a639ec0549c25740f3446c02..db826f724058e5f6380e2019f275f16d570d90d6 100644 (file)
@@ -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 "))
 
 \f