* wl-fldmgr.el (wl-fldmgr-save-folders): Use `product-string-1'
for ~/.folders header.
(wl-fldmgr-folders-header): Changed.
+ * wl-demo.el (wl-demo): Use product.el.
* wl-vars.el (wl-appname, wl-version, wl-codename): Move to
wl-version.el.
"Copyright (C) 1998-2000 Yuuichi Teranishi <teranisi@gohome.org>")
(require 'wl-vars)
+(require 'wl-version)
(require 'wl-highlight)
(provide 'wl-demo)
(indent-rigidly (point-min) (point-max)
(/ (- (* 8 (1+ ww)) lw) 16))))
(goto-char (point-min)))
- (insert (or wl-logo-ascii wl-appname))
+ (insert (or wl-logo-ascii (product-name (product-find 'wl-version))))
(put-text-property (point-min) (point) 'face 'wl-highlight-logo-face)
(setq rest (- wh (count-lines (point-min) (point)) 1))
(let ((lw (current-column))
"version %s - \"%s\"\n\n%s")
(t
"\nversion %s - \"%s\"\n\n%s"))
- wl-version wl-codename wl-demo-copyright-notice))
+ (product-version-string (product-find 'wl-version))
+ (product-code-name (product-find 'wl-version))
+ wl-demo-copyright-notice))
(put-text-property start (point) 'face 'wl-highlight-demo-face)
(let ((fill-column ww))
(center-region start (point))))
;; for backward compatibility
-(defconst wl-appname (product-name (product-find 'wl-version)))
+(defconst wl-appname (product-name (product-find 'wl-version)))
(make-obsolete-variable
'wl-appname
"use (product-name (product-find 'wl-version)) insteaed.")