[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: release plan



emacs-w3m-1_2 枝ですが、w3m-w3m-retrieve で w3m-type の値が w3m
以外ではエラーで弾いています。以下のようにでもしてしまった方が
混乱を避けられるのでは?

(defcustom w3m-type
  (if w3m-mnc 'w3m-mnc 'w3m-0.2.1)
  "*Type of w3m."
[...]
(defconst w3m-type 'w3m
  "Fix the value to `w3m' temporary in this version of emacs-w3m.")

(defcustom w3m-language

あと、XEmacs で ESF を load すると require の第3引数が使えなく
なってしまうので、

(require 'ccl nil )

を

(condition-case nil
    (require 'ccl)
  (error))

に変えさせていただきました。
-- 
Katsumi Yamaoka <yamaoka@namazu.org>