Variable: parseedn-default-tag-readers
parseedn-default-tag-readers is a variable defined in parseedn.el.
Value
((inst
. #[257 "\300\301!B\207" [edn-inst date-to-time] 4
("/root/.emacs.d/elpa/parseedn-20231203.1909/parseedn.elc"
. 399)])
(uuid
. #[257 "\300D\207" [edn-uuid] 3
("/root/.emacs.d/elpa/parseedn-20231203.1909/parseedn.elc"
. 399)]))
Documentation
Default reader functions for handling tagged literals in EDN.
These are the ones defined in the EDN spec, #inst and #uuid. It is not recommended you change this variable, as this globally changes the behavior of the EDN reader. Instead pass your own handlers as an optional argument to the reader functions.
Source Code
;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Reader
(defvar parseedn-default-tag-readers
(list (cons 'inst (lambda (s)
(cl-list* 'edn-inst (date-to-time s))))
(cons 'uuid (lambda (s)
(list 'edn-uuid s))))
"Default reader functions for handling tagged literals in EDN.
These are the ones defined in the EDN spec, #inst and #uuid. It
is not recommended you change this variable, as this globally
changes the behavior of the EDN reader. Instead pass your own
handlers as an optional argument to the reader functions.")