Function: message-goto-fcc

message-goto-fcc is an interactive and byte-compiled function defined in message.el.gz.

Signature

(message-goto-fcc)

Documentation

Move point to the Fcc header or insert an empty one.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-goto-fcc ()
  "Move point to the Fcc header or insert an empty one."
  (interactive nil message-mode)
  (push-mark)
  (message-position-on-field "Fcc" "To" "Newsgroups"))