Function: dictionary-special-dictionary
dictionary-special-dictionary is a byte-compiled function defined in
dictionary.el.gz.
Signature
(dictionary-special-dictionary NAME)
Documentation
Check whether the special * or ! dictionary are seen in NAME.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-special-dictionary (name)
"Check whether the special * or ! dictionary are seen in NAME."
(or (equal name "*")
(equal name "!")))