Function: gnus-kill-file-apply-string

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

Signature

(gnus-kill-file-apply-string STRING)

Documentation

Apply STRING to current newsgroup.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-kill.el.gz
(defun gnus-kill-file-apply-string (string)
  "Apply STRING to current newsgroup."
  (interactive)
  (let ((string (concat "(progn \n" string "\n)")))
    (save-excursion
      (save-window-excursion
	(pop-to-buffer gnus-summary-buffer)
	(eval (car (read-from-string string)) t)))))