dabbrev-popupの中身

前に調べたときのメモ
dabbrev-popupのメモ
end :(point) ;カーソル位置
start :(save-excursion (dabbrev-start)) 前の単語の開始位置かな。
dabbrev-start: ;単語のスタート位置らしき所の移動
abbrev :(buffer-substring start end) ;補完したい文字列の現在入力されている部分

matches:(make-hash-table :test (if *dabbrevs-case-fold* #'equalp #'equal))
;コレはよく分からない。ハッシュというのだけど。最終的にはハッシュじゃなくてリストになっているような感じ。