Function: json--record-path

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

Signature

(json--record-path KEY)

Documentation

Record the KEY to the current JSON path.

Used internally by json-path-to-position.

Source Code

;; Defined in /usr/src/emacs/lisp/json.el.gz
(defun json--record-path (key)
  "Record the KEY to the current JSON path.
Used internally by `json-path-to-position'."
  (push (cons (point) key) json--path))