diff options
| author | Chong Yidong | 2008-10-08 15:52:43 +0000 |
|---|---|---|
| committer | Chong Yidong | 2008-10-08 15:52:43 +0000 |
| commit | b111d5d0542844e7043f28a2114dec29f3963e88 (patch) | |
| tree | e2711d9c0fb598c64b748736747274a379b05ffd | |
| parent | 40b579558a4e697c1dbadea4c7ee5e4cd7ff5cab (diff) | |
| download | emacs-b111d5d0542844e7043f28a2114dec29f3963e88.tar.gz emacs-b111d5d0542844e7043f28a2114dec29f3963e88.zip | |
(json-skip-whitespace): Fix last change.
| -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.") | |||
| 140 | 140 | ||
| 141 | (defun json-skip-whitespace () | 141 | (defun json-skip-whitespace () |
| 142 | "Skip past the whitespace at point." | 142 | "Skip past the whitespace at point." |
| 143 | (skip-syntax-forward " ")) | 143 | (skip-chars-forward "\t\r\n\f\b ")) |
| 144 | 144 | ||
| 145 | 145 | ||
| 146 | 146 | ||