]> git.notmuchmail.org Git - notmuch/blobdiff - emacs/notmuch-message.el
Don't quote lambda forms
[notmuch] / emacs / notmuch-message.el
index aefd3fbc7a5c3d7f53a9be1942f5c2bc142d8df9..08e5b1749af8e4d11813826f23675f6c6676806a 100644 (file)
@@ -39,10 +39,10 @@ the \"inbox\" and \"todo\", you would set
     (when (and notmuch-message-replied-tags rep)
       ;; add a "+" to any tag that is doesn't already begin with a "+"
       ;; or "-"
-      (let ((tags (mapcar '(lambda (str)
-                            (if (not (string-match "^[+-]" str))
-                                (concat "+" str)
-                              str))
+      (let ((tags (mapcar (lambda (str)
+                           (if (not (string-match "^[+-]" str))
+                               (concat "+" str)
+                             str))
                          notmuch-message-replied-tags)))
        (apply 'notmuch-tag (concat "id:" (car (car rep))) tags)))))