Function: gnus-uu-post-news
gnus-uu-post-news is an autoloaded, interactive and byte-compiled
function defined in gnus-uu.el.gz.
Signature
(gnus-uu-post-news)
Documentation
Compose an article and post an encoded file.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-post-news ()
"Compose an article and post an encoded file."
(interactive)
(setq gnus-uu-post-inserted-file-name nil)
(setq gnus-uu-winconf-post-news (current-window-configuration))
(gnus-summary-post-news)
(let ((map (make-sparse-keymap)))
(set-keymap-parent map (current-local-map))
(use-local-map map))
;;(local-set-key "\C-c\C-c" 'gnus-summary-edit-article-done)
(local-set-key "\C-c\C-c" 'gnus-uu-post-news-inews)
(local-set-key "\C-c\C-s" 'gnus-uu-post-news-inews)
(local-set-key "\C-c\C-i" 'gnus-uu-post-insert-binary-in-article)
(when gnus-uu-post-include-before-composing
(save-excursion (setq gnus-uu-post-inserted-file-name
(gnus-uu-post-insert-binary)))))