Function: json-skip-whitespace
json-skip-whitespace is a byte-compiled function defined in
json.el.gz.
Signature
(json-skip-whitespace)
Documentation
Skip past the whitespace at point.
Source Code
;; Defined in /usr/src/emacs/lisp/json.el.gz
(define-inline json-skip-whitespace ()
"Skip past the whitespace at point."
;; See
;; https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf
;; or https://tools.ietf.org/html/rfc7159#section-2 for the
;; definition of whitespace in JSON.
(inline-quote (skip-chars-forward "\t\n\r ")))