Function: jsonrpc--json-read

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

Signature

(jsonrpc--json-read)

Documentation

Read JSON object in buffer, move point to end of buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/jsonrpc.el.gz
(defalias 'jsonrpc--json-read
  (if (fboundp 'json-parse-buffer)
      (lambda ()
        (json-parse-buffer :object-type 'plist
                           :null-object nil
                           :false-object :json-false))
    (require 'json)
    (defvar json-object-type)
    (declare-function json-read "json" ())
    (lambda ()
      (let ((json-object-type 'plist))
        (json-read))))
  "Read JSON object in buffer, move point to end of buffer.")