5
にキーを見ない私はielmに次のelispのコードを評価した:のEmacs:GETHASHはハッシュテーブル
(setq foo-hash (make-hash-table))
(puthash "location" "house" foo-hash)
(defun foo-start()
(interactive)
(message (gethash "location" foo-hash)))
私は(foo-start)
または(gethash "location" foo-hash)
を実行したときしかし、私は唯一のnil
がこだまし得ます。 ielmエコーでfoo-hash
と入力すると、#s(hash-table size 65 test eql rehash-size 1.5 rehash-threshold 0.8 data ("location" "house"))
これはバグですか、何か間違っていますか?
Emacsのバージョン:デフォルトでは比較のためのelispの使用eql
で24.0.95.1