Function: expand-abbrev-from-expand
expand-abbrev-from-expand is a byte-compiled function defined in
expand.el.gz.
Signature
(expand-abbrev-from-expand WORD)
Documentation
Test if an abbrev has a hook.
Source Code
;; Defined in /usr/src/emacs/lisp/expand.el.gz
(defun expand-abbrev-from-expand (word)
"Test if an abbrev has a hook."
(or
(and (intern-soft word local-abbrev-table)
(symbol-function (intern-soft word local-abbrev-table)))
(and (intern-soft word global-abbrev-table)
(symbol-function (intern-soft word global-abbrev-table)))))