Function: kill-all-abbrevs
kill-all-abbrevs is an interactive and byte-compiled function defined
in abbrev.el.gz.
Signature
(kill-all-abbrevs)
Documentation
Undefine all defined abbrevs.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun kill-all-abbrevs ()
"Undefine all defined abbrevs."
(interactive)
(dolist (tablesym abbrev-table-name-list)
(clear-abbrev-table (symbol-value tablesym))))