Function: message-goto-bcc

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

Signature

(message-goto-bcc)

Documentation

Move point to the Bcc 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-bcc ()
  "Move point to the Bcc  header or insert an empty one."
  (interactive nil message-mode)
  (push-mark)
  (message-position-on-field "Bcc" "Cc" "To"))