Function: unread-bib

unread-bib is an interactive and byte-compiled function defined in bib-mode.el.gz.

Signature

(unread-bib)

Documentation

Append current or previous entry to file of unread papers named by variable unread-bib-file.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/bib-mode.el.gz
(defun unread-bib ()
   "Append current or previous entry to file of unread papers
named by variable `unread-bib-file'."
   (interactive)
   (mark-bib)
   (if (get-file-buffer unread-bib-file)
      (append-to-buffer (get-file-buffer unread-bib-file) (mark) (point))
      (append-to-file (mark) (point) unread-bib-file)))