]> git.eshelyaron.com Git - emacs.git/commitdiff
(indian-make-hash): Switch makehash -> make-hash-table.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 7 Jul 2002 21:00:54 +0000 (21:00 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 7 Jul 2002 21:00:54 +0000 (21:00 +0000)
lisp/language/ind-util.el

index cf6b7d34ddfe5d86f093eea488f4b36bd70358dd..aa40f6d02fb4668f2b85d3239fdaab9b1bb8daa9 100644 (file)
@@ -263,8 +263,8 @@ FUNCTION will be called 15 times."
 
 (defun indian-make-hash (table trans-table)
   "Indian Transliteration Hash for decode/encode"
-  (let* ((encode-hash (makehash 'equal))
-        (decode-hash (makehash 'equal))
+  (let* ((encode-hash (make-hash-table :test 'equal))
+        (decode-hash (make-hash-table :test 'equal))
         (hashtbls (cons encode-hash decode-hash))
         (vowels     (elt table 0))
         (consonants (elt table 1))