+2000-10-26 Katsumi Yamaoka <yamaoka@jpl.org>
+
+ * wl-demo.el (wl-demo): Don't use `fancy-splash-insert'.
+
2000-10-26 Yuuichi Teranishi <teranisi@gohome.org>
* wl-highlight.el (wl-highlight-message):
(defalias-maybe 'create-image 'ignore)
(defalias-maybe 'device-on-window-system-p 'ignore)
(defalias-maybe 'display-graphic-p 'ignore)
- (defalias-maybe 'fancy-splash-insert 'ignore)
(defalias-maybe 'frame-char-height 'ignore)
(defalias-maybe 'frame-char-width 'ignore)
(defalias-maybe 'frame-parameter 'ignore)
wl-demo-copyright-notice)))
(if wl-on-emacs21
(let ((bg (face-background 'wl-highlight-demo-face))
- (fg (face-foreground 'wl-highlight-demo-face))
- (face '(variable-pitch)))
- (if (stringp bg)
- (setcdr face (list ':background bg)))
- (if (stringp fg)
- (setq face (nconc face (list ':foreground fg))))
- (let (fancy-splash-help-echo)
- (fancy-splash-insert ':face face text)))
+ (fg (face-foreground 'wl-highlight-demo-face)))
+ (insert (propertize text
+ 'face (nconc '(variable-pitch)
+ (if (stringp bg)
+ (list ':background bg))
+ (if (stringp fg)
+ (list ':foreground fg))))))
(insert text)
(put-text-property start (point) 'face 'wl-highlight-demo-face))
(let ((fill-column ww))