Function: abbrev--suggest-inform-user

abbrev--suggest-inform-user is a byte-compiled function defined in abbrev.el.gz.

Signature

(abbrev--suggest-inform-user EXPANSION)

Documentation

Display a message to the user about the existing abbrev.

EXPANSION is a cons cell where the car is the expansion and the cdr is the abbrev.

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun abbrev--suggest-inform-user (expansion)
    "Display a message to the user about the existing abbrev.
EXPANSION is a cons cell where the `car' is the expansion and the
`cdr' is the abbrev."
    (run-with-idle-timer
     1 nil
     (lambda ()
       (message "You can write `%s' using the abbrev `%s'."
                                   (car expansion) (cdr expansion))))
    (push expansion abbrev--suggest-saved-recommendations))