typespec+ を更新しました

変数の名前変えたのに古い名前のまま残ってたのがあったのを修正しました。せっかくなので紹介。

xyzzy デフォルトの `typep` に未定義の typespec を与えると、黙って nil を返します。

(typep 3 'hoge)
=> nil

typespec+ を読み込んでも、そのままだとこの動作は変わりませんが

(require "typespec+")
=> t

(typep 3 'hoge)
=> nil

`typespec+:*warn-on-undefined-typespec*` を non-nil にしておくと、警告してくれます。

(setf typespec+:*warn-on-undefined-typespec* t)
=> t

(typep 3 'hoge)
; Warning: type specifier じゃないみたい: hoge
=> nil

lisp 書く人は non-nil にしておけば、typo ったりした時に教えてくれるかも。