Variable: smime-mode-hook
smime-mode-hook is a variable defined in smime.el.gz.
Value
nil
Documentation
Hook run after entering SMIME mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/smime.el.gz
(define-derived-mode smime-mode fundamental-mode ;special-mode
"SMIME"
"Major mode for browsing, viewing and fetching certificates.
All normal editing commands are switched off.
\\<smime-mode-map>
The following commands are available:
\\{smime-mode-map}"
(setq mode-line-process nil)
(buffer-disable-undo)
(setq truncate-lines t)
(setq buffer-read-only t))