Function: quietly-read-abbrev-file

quietly-read-abbrev-file is a byte-compiled function defined in abbrev.el.gz.

Signature

(quietly-read-abbrev-file &optional FILE)

Documentation

Quietly read abbrev definitions from file written with write-abbrev-file.

Optional argument FILE is the name of the file to read; it defaults to the value of abbrev-file-name. Do not display any messages about loading the abbrevs.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/abbrev.el.gz
(defun quietly-read-abbrev-file (&optional file)
  "Quietly read abbrev definitions from file written with `write-abbrev-file'.
Optional argument FILE is the name of the file to read;
it defaults to the value of `abbrev-file-name'.
Do not display any messages about loading the abbrevs."
					;(interactive "fRead abbrev file: ")
  (read-abbrev-file file t))