Function: gnus-summary-save-newsrc

gnus-summary-save-newsrc is an interactive and byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-summary-save-newsrc &optional FORCE)

Documentation

Save the current number of read/marked articles in the dribble buffer.

The dribble buffer will then be saved. If FORCE (the prefix), also save the .newsrc file(s).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-save-newsrc (&optional force)
  "Save the current number of read/marked articles in the dribble buffer.
The dribble buffer will then be saved.
If FORCE (the prefix), also save the .newsrc file(s)."
  (interactive "P" gnus-summary-mode)
  (gnus-summary-update-info t)
  (if force
      (gnus-save-newsrc-file)
    (gnus-dribble-save)))