Function: json-advance

json-advance is a byte-compiled function defined in json.el.gz.

Signature

(json-advance &optional N)

Documentation

Advance N characters forward, or 1 character if N is nil.

On reaching the end of the accessible region of the buffer, stop and signal an error.

Source Code

;; Defined in /usr/src/emacs/lisp/json.el.gz
;; Reader utilities

(define-inline json-advance (&optional n)
  "Advance N characters forward, or 1 character if N is nil.
On reaching the end of the accessible region of the buffer, stop
and signal an error."
  (inline-quote (forward-char ,n)))