diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2008-10-08 15:52:43 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2008-10-08 15:52:43 +0000 |
commit | b111d5d0542844e7043f28a2114dec29f3963e88 (patch) | |
tree | e2711d9c0fb598c64b748736747274a379b05ffd /lisp/json.el | |
parent | 40b579558a4e697c1dbadea4c7ee5e4cd7ff5cab (diff) | |
download | emacs-b111d5d0542844e7043f28a2114dec29f3963e88.tar.gz |
(json-skip-whitespace): Fix last change.
Diffstat (limited to 'lisp/json.el')
-rw-r--r-- | lisp/json.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 ")) |