Skip to content

Commit

Permalink
modified to work with Allegro CL's modern case mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmizumar committed Apr 1, 2012
1 parent 2d7f9f4 commit aeb41d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/hash.lisp
Expand Up @@ -13,9 +13,9 @@

(defmacro deflookup-table
(name &key (var (make-lookup-name name "*" name "*"))
(reader (make-lookup-name name "GET-" name))
(writer (make-lookup-name name "GET-" name))
(rem-er (make-lookup-name name "REM-" name))
(reader (make-lookup-name name "get-" name))
(writer (make-lookup-name name "get-" name))
(rem-er (make-lookup-name name "rem-" name))
(at-redefinition :warn)
(documentation
(format nil "Global var for the ~S lookup table" name))
Expand Down

0 comments on commit aeb41d4

Please sign in to comment.