Variable: parseedn-default-data-reader-fn
parseedn-default-data-reader-fn is a variable defined in parseedn.el.
Value
nil
Documentation
The default tagged literal reader function.
When no data reader is found for a tag and
parseedn-default-data-reader-fn is non-nil, it will be called
with two arguments, the tag and the value. If
parseedn-default-data-reader-fn is nil (the default), an
exception will be thrown for the unknown tag.
The default data reader can also be provided via the tagged reader options registered under the :default keyword when calling the reader functions.
Source Code
;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
(defvar parseedn-default-data-reader-fn nil
"The default tagged literal reader function.
When no data reader is found for a tag and
`parseedn-default-data-reader-fn' is non-nil, it will be called
with two arguments, the tag and the value. If
`parseedn-default-data-reader-fn' is nil (the default), an
exception will be thrown for the unknown tag.
The default data reader can also be provided via the tagged
reader options registered under the :default keyword when calling
the reader functions.")