Function: gnus-outlook-display-article-buffer

gnus-outlook-display-article-buffer is a byte-compiled function defined in deuglify.el.gz.

Signature

(gnus-outlook-display-article-buffer)

Documentation

Redisplay current buffer or article buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/deuglify.el.gz
;; Functions

(defun gnus-outlook-display-article-buffer ()
  "Redisplay current buffer or article buffer."
  (with-current-buffer (or gnus-article-buffer (current-buffer))
    ;; "Emulate" `gnus-article-prepare-display' without calling
    ;; it. Calling `gnus-article-prepare-display' on an already
    ;; prepared article removes all MIME parts.  I'm unsure whether
    ;; this is a bug or not.
    (save-excursion
      (save-restriction
	(widen)
	(article-goto-body)
	(narrow-to-region (point) (point-max))
	(gnus-treat-article nil)))
    (gnus-run-hooks 'gnus-article-prepare-hook
		    'gnus-outlook-display-hook)))