Function: bib-add
bib-add is an interactive and byte-compiled function defined in
bib-mode.el.gz.
Signature
(bib-add)
Documentation
Set up editor to add to troff bibliography file specified
by global variable bib-file. See description of bib-mode.
Probably introduced at or before Emacs version 29.1.
Key Bindings
Aliases
addbib (obsolete since 29.1)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/bib-mode.el.gz
(defun bib-add ()
"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)
)