Function: addbib
addbib is an interactive and byte-compiled function defined in
bib-mode.el.gz.
Signature
(addbib)
Documentation
Set up editor to add to troff bibliography file specified
by global variable bib-file. See description of bib-mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bib-mode.el.gz
(defun addbib ()
"Set up editor to add to troff bibliography file specified
by global variable `bib-file'. See description of `bib-mode'."
(interactive)
(find-file bib-file)
(goto-char (point-max))
(bib-mode)
)