Function: mh-remove-xemacs-horizontal-scrollbar
mh-remove-xemacs-horizontal-scrollbar is a macro defined in
mh-folder.el.gz.
Signature
(mh-remove-xemacs-horizontal-scrollbar)
Documentation
Get rid of the horizontal scrollbar that XEmacs insists on putting in.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-folder.el.gz
;;; MH-Folder Mode
(defmacro mh-remove-xemacs-horizontal-scrollbar ()
"Get rid of the horizontal scrollbar that XEmacs insists on putting in."
(when (featurep 'xemacs)
'(if (and (featurep 'scrollbar)
(fboundp 'set-specifier))
(set-specifier horizontal-scrollbar-visible-p nil
(cons (current-buffer) nil)))))