Skip to content

Commit 876dfea

Browse files
committed
Fix reference to parseedn-print-kvs -> parseedn-print-hash-or-alist
1 parent 4efa23a commit 876dfea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parseedn.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ TAG-READERS is an optional association list. For more information, see
150150
(let ((next (cdr keys)))
151151
(when (not (seq-empty-p next))
152152
(insert ", ")
153-
(parseedn-print-kvs map next)))))
153+
(parseedn-print-hash-or-alist map next)))))
154154

155155
(defun parseedn-print-plist (plist)
156156
"Insert an elisp property list as an EDN map into the current buffer."
@@ -217,7 +217,7 @@ DATUM can be any Emacs Lisp value."
217217
(insert "{")
218218
(parseedn-print-plist datum)
219219
(insert "}"))
220-
220+
221221
((consp datum)
222222
(cond
223223
((not (listp (cdr datum))) ; dotted pair

0 commit comments

Comments
 (0)