Function: mh-maybe-show

mh-maybe-show is an autoloaded and byte-compiled function defined in mh-show.el.gz.

Signature

(mh-maybe-show &optional MSG)

Documentation

Display message at cursor, but only if in show mode.

If optional arg MSG is non-nil, display that message instead.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-show.el.gz
;;; Support Routines for MH-Folder Commands

;;;###mh-autoload
(defun mh-maybe-show (&optional msg)
  "Display message at cursor, but only if in show mode.
If optional arg MSG is non-nil, display that message instead."
  (if mh-showing-mode (mh-show msg)))