changeset 98572:e26dedf05927

(json-skip-whitespace): Fix last change.
author Chong Yidong <cyd@stupidchicken.com>
date Wed, 08 Oct 2008 15:52:43 +0000
parents e2a4c50b0a78
children 24e35179a467
files lisp/json.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/json.el	Wed Oct 08 15:52:34 2008 +0000
+++ b/lisp/json.el	Wed Oct 08 15:52:43 2008 +0000
@@ -140,7 +140,7 @@
 
 (defun json-skip-whitespace ()
   "Skip past the whitespace at point."
-  (skip-syntax-forward " "))
+  (skip-chars-forward "\t\r\n\f\b "))