From b111d5d0542844e7043f28a2114dec29f3963e88 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Wed, 8 Oct 2008 15:52:43 +0000 Subject: [PATCH] (json-skip-whitespace): Fix last change. --- lisp/json.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ")) -- 2.39.5