Function: gnus-kill-file-apply-buffer

gnus-kill-file-apply-buffer is an interactive and byte-compiled function defined in gnus-kill.el.gz.

Signature

(gnus-kill-file-apply-buffer)

Documentation

Apply current buffer to current newsgroup.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-kill.el.gz
(defun gnus-kill-file-apply-buffer ()
  "Apply current buffer to current newsgroup."
  (interactive)
  (if (and gnus-current-kill-article
	   (get-buffer gnus-summary-buffer))
      ;; Assume newsgroup is selected.
      (gnus-kill-file-apply-string (buffer-string))
    (ding) (gnus-message 2 "No newsgroup is selected.")))