* wl-address.el (wl-address-concat-token): Fix typo.
authorkaoru <kaoru>
Sat, 16 Feb 2008 14:23:07 +0000 (14:23 +0000)
committerkaoru <kaoru>
Sat, 16 Feb 2008 14:23:07 +0000 (14:23 +0000)
wl/ChangeLog
wl/wl-address.el

index b4fe30a..2e4b33f 100644 (file)
@@ -1,3 +1,7 @@
+2008-02-16  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * wl-address.el (wl-address-concat-token): Fix typo.
+
 2008-02-15  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-score.el (wl-score-put-alike): Use quote instead of backquote.
index 49f8f91..d41537d 100644 (file)
@@ -623,7 +623,7 @@ Deletion is done by using `elmo-list-delete'."
   `(cond
     ((eq 'quoted-string (car ,token))
      (concat ,string "\"" (cdr ,token) "\""))
-    ((eq 'comment (car (, token)))
+    ((eq 'comment (car ,token))
      (concat ,string "(" (cdr ,token) ")"))
     (t
      (concat ,string (cdr ,token)))))