Function: abbrev-expansion
abbrev-expansion is a byte-compiled function defined in abbrev.el.gz.
Signature
(abbrev-expansion ABBREV &optional TABLE)
Documentation
Return the string that ABBREV expands into in the current buffer.
Optionally specify an abbrev TABLE as second arg; then ABBREV is looked up in that table only.
Source Code
;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun abbrev-expansion (abbrev &optional table)
"Return the string that ABBREV expands into in the current buffer.
Optionally specify an abbrev TABLE as second arg;
then ABBREV is looked up in that table only."
(symbol-value (abbrev-symbol abbrev table)))