(wl-address-quote-specials): Use it.
+2001-01-18 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-address.el (wl-address-specials-regexp): New constant.
+ (wl-address-quote-specials): Use it.
+
2001-01-17 Yuuichi Teranishi <teranisi@gohome.org>
* wl-summary.el (wl-summary-rescan):
(completing-read "To: " cl)
(read-string "To: "))))
+(defconst wl-address-specials-regexp "[]\"(),.:;<>@[\\]")
+
(defun wl-address-quote-specials (word)
"Make quoted string of WORD if needed."
- (if (assq 'specials (std11-lexical-analyze word))
+ (if (string-match wl-address-specials-regexp word)
(prin1-to-string word)
word))