+2000-10-05 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * wl-demo.el (wl-demo): Don't pass by the XEmacs routine when
+ window system is not used.
+
2000-10-04 Yuuichi Teranishi <teranisi@gohome.org>
* wl-vars.el (wl-summary-pick-field-default): Added `Last', `First' and
(default-line-spacing 0))
(get-buffer-create "*WL Demo*"))))
(switch-to-buffer demo-buf)
- (cond ((and (featurep 'xemacs) (device-on-window-system-p))
- (if (boundp 'default-gutter-visible-p)
- (set-specifier (symbol-value 'default-gutter-visible-p)
- nil demo-buf))
- (set-specifier (symbol-value 'scrollbar-height) 0 demo-buf)
- (set-specifier (symbol-value 'scrollbar-width) 0 demo-buf))
+ (cond ((featurep 'xemacs)
+ (when (device-on-window-system-p)
+ (if (boundp 'default-gutter-visible-p)
+ (set-specifier (symbol-value 'default-gutter-visible-p)
+ nil demo-buf))
+ (set-specifier (symbol-value 'scrollbar-height) 0 demo-buf)
+ (set-specifier (symbol-value 'scrollbar-width) 0 demo-buf)))
((and (> emacs-major-version 20) (display-graphic-p))
(make-local-hook 'kill-buffer-hook)
(let* ((frame (selected-frame))