Function: emacs-news-view-mode

emacs-news-view-mode is an autoloaded, interactive and byte-compiled function defined in emacs-news-mode.el.gz.

Signature

(emacs-news-view-mode)

Documentation

Major mode for viewing the Emacs NEWS file.

In addition to any hooks its parent mode special-mode might have run, this mode runs the hook emacs-news-view-mode-hook, as the final or penultimate step during initialization.

C-c C-b outline-backward-same-level
C-c C-f outline-forward-same-level
C-c C-n outline-next-visible-heading
C-c C-p outline-previous-visible-heading
C-c C-u outline-up-heading
C-x C-q emacs-news-mode

Probably introduced at or before Emacs version 29.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/emacs-news-mode.el.gz
;;;###autoload
(define-derived-mode emacs-news-view-mode special-mode "NEWS"
  "Major mode for viewing the Emacs NEWS file."
  (setq buffer-read-only t)
  (emacs-news--buttonize)
  (button-mode)
  (emacs-news--mode-common))