Skip to content

Commit

Permalink
Use #'equal instead of #'equalp as the :test parameter of make-hash-t…
Browse files Browse the repository at this point in the history
…able [fix #7]
  • Loading branch information
eudoxia0 committed Oct 25, 2020
1 parent ad7095b commit 716b212
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/parser.lisp
Expand Up @@ -13,9 +13,9 @@
(:documentation "The YAML parser."))
(in-package :yaml.parser)

(defvar +scalar-converters+ (make-hash-table :test #'equalp))
(defvar +sequence-converters+ (make-hash-table :test #'equalp))
(defvar +mapping-converters+ (make-hash-table :test #'equalp))
(defvar +scalar-converters+ (make-hash-table :test #'equal))
(defvar +sequence-converters+ (make-hash-table :test #'equal))
(defvar +mapping-converters+ (make-hash-table :test #'equal))

(defun scalar-converter (tag)
(gethash tag +scalar-converters+))
Expand Down

0 comments on commit 716b212

Please sign in to comment.