Function: add-abbrev
add-abbrev is a byte-compiled function defined in abbrev.el.gz.
Signature
(add-abbrev TABLE TYPE ARG)
Source Code
;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun add-abbrev (table type arg)
(let ((exp (and (>= arg 0)
(buffer-substring-no-properties
(point)
(if (= arg 0) (mark)
(save-excursion (forward-word (- arg)) (point))))))
name)
(setq name
(read-string (format (if exp "%s abbrev that expands into \"%s\": "
"Undefine %s abbrev: ")
type exp)))
(set-text-properties 0 (length name) nil name)
(if (or (null exp)
(not (abbrev-expansion name table))
(y-or-n-p (format "%s expands into \"%s\"; redefine? "
name (abbrev-expansion name table))))
(define-abbrev table (downcase name) exp))))