* wl-summary.el (wl-summary-buffer-folder-name)
authorkaoru <kaoru>
Sun, 17 Feb 2008 09:51:27 +0000 (09:51 +0000)
committerkaoru <kaoru>
Sun, 17 Feb 2008 09:51:27 +0000 (09:51 +0000)
(wl-summary-get-alike): Use quote instead of backquote.
(wl-summary-sticky-buffer-name, wl-summary-put-alike): New backquote style.

wl/ChangeLog
wl/wl-summary.el

index 9d6c0f9..887ab50 100644 (file)
@@ -1,5 +1,10 @@
 2008-02-17  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
+       * wl-summary.el (wl-summary-buffer-folder-name)
+       (wl-summary-get-alike): Use quote instead of backquote.
+       (wl-summary-sticky-buffer-name, wl-summary-put-alike): New
+       backquote style.
+
        * wl-message.el (wl-message-buffer-cache-buffer-get)
        (wl-message-buffer-cache-folder-get)
        (wl-message-buffer-cache-message-get)
index 9537bb3..51079a8 100644 (file)
@@ -69,8 +69,8 @@
 (defvar wl-summary-buffer-elmo-folder nil)
 
 (defmacro wl-summary-buffer-folder-name ()
-  (` (and wl-summary-buffer-elmo-folder
-         (elmo-folder-name-internal wl-summary-buffer-elmo-folder))))
+  '(and wl-summary-buffer-elmo-folder
+       (elmo-folder-name-internal wl-summary-buffer-elmo-folder)))
 
 (defvar wl-summary-buffer-disp-msg    nil)
 (defvar wl-summary-buffer-disp-folder nil)
 (defvar wl-persistent-mark)
 
 (defmacro wl-summary-sticky-buffer-name (name)
-  (` (concat wl-summary-buffer-name ":" (, name))))
+  `(concat wl-summary-buffer-name ":" ,name))
 
 (defun wl-summary-default-subject (subject-string)
   (if (string-match "^[ \t]*\\[[^:]+[,: ][0-9]+\\][ \t]*" subject-string)
@@ -2628,13 +2628,13 @@ If ARG, without confirm."
           (funcall wl-summary-subject-filter-function subject2)))
 
 (defmacro wl-summary-put-alike (alike)
-  (` (elmo-set-hash-val (format "#%d" (wl-count-lines))
-                       (, alike)
-                       wl-summary-alike-hashtb)))
+  `(elmo-set-hash-val (format "#%d" (wl-count-lines))
+                     ,alike
+                     wl-summary-alike-hashtb))
 
 (defmacro wl-summary-get-alike ()
-  (` (elmo-get-hash-val (format "#%d" (wl-count-lines))
-                       wl-summary-alike-hashtb)))
+  '(elmo-get-hash-val (format "#%d" (wl-count-lines))
+                     wl-summary-alike-hashtb))
 
 (defun wl-summary-insert-headers (folder func &optional mime-decode)
   (let ((numbers (elmo-folder-list-messages folder 'visible t))