Function: mh-do-in-xemacs
mh-do-in-xemacs is an autoloaded macro defined in mh-acros.el.
Signature
(mh-do-in-xemacs &rest BODY)
Documentation
Execute BODY if in XEmacs.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-acros.el
;;;###mh-autoload
(defmacro mh-do-in-xemacs (&rest body)
"Execute BODY if in XEmacs."
(declare (debug t) (indent defun))
(when (featurep 'xemacs) `(progn ,@body)))