Function: bib-unread

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

Signature

(bib-unread)

Documentation

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

Probably introduced at or before Emacs version 29.1.

Key Bindings

Aliases

unread-bib (obsolete since 29.1)

Source Code

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