[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
display message if w3m command is not found
- From: Yoichi NAKAYAMA <yoichi@xxxxxxxxx>
- Date: Tue, 22 Jun 2004 22:37:55 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 06912
なかやまです
w3m コマンドがインストールされていない時などに
wrong-type-argument stringp nil
なエラーが出ても何のことだかわからないので、
適当なメッセージを出すようにしてはどうでしょうか。
--
Yoichi NAKAYAMA ;; というわけで再送です。
Index: ChangeLog
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/ChangeLog,v
retrieving revision 1.2192
diff -u -r1.2192 ChangeLog
--- ChangeLog 18 Jun 2004 10:26:46 -0000 1.2192
+++ ChangeLog 19 Jun 2004 15:52:13 -0000
@@ -1,3 +1,7 @@
+2004-06-14 Yoichi NAKAYAMA <yoichi@geiin.org>
+
+ * w3m.el (TopLevel): Display meaningful message when w3m-command is nil.
+
2004-05-27 Andreas Seltenreich <seltenreich@gmx.de>
* shimbun/sb-welt-de.el: New file.
Index: w3m.el
===================================================================
RCS file: /storage/cvsroot/emacs-w3m/w3m.el,v
retrieving revision 1.1054
diff -u -r1.1054 w3m.el
--- w3m.el 14 Jun 2004 08:36:48 -0000 1.1054
+++ w3m.el 19 Jun 2004 15:52:16 -0000
@@ -226,6 +226,8 @@
(list nil)))
(when (member "m17n" w3m-compile-options)
(setq w3m-type 'w3m-m17n))))))))
+(when (not (stringp w3m-command))
+ (error "install w3m command in exec-path or set variable `w3m-command' correctly"))
(defcustom w3m-user-agent (concat "Emacs-w3m/" emacs-w3m-version
" " w3m-version)
--}-<<mixed>>