]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: replace setq + let with let*
authorDavid Bremner <bremner@debian.org>
Sun, 2 Jun 2013 14:57:01 +0000 (11:57 -0300)
committerDavid Bremner <bremner@debian.org>
Sun, 2 Jun 2013 23:38:17 +0000 (20:38 -0300)
I found several places where a setq is immediately followed by a let
or a let*. This seems to be the pessimal combination, with the
implicit scope of the setq combined with the extra indentation of the let.
I combined these cases into a single let* which I think is easier to read.

emacs/notmuch-show.el
emacs/notmuch.el

index 18b4671507a703183ffa7e9dfcc251b29b6ca477..e8c83433f7c0bf52b18fd39a8a96fee60a56bd57 100644 (file)
@@ -1734,8 +1734,8 @@ TAG-CHANGES is a list of tag operations for `notmuch-tag'."
 
 See `notmuch-tag' for information on the format of TAG-CHANGES."
   (interactive)
-  (setq tag-changes (notmuch-tag (notmuch-show-get-message-id) tag-changes))
-  (let* ((current-tags (notmuch-show-get-tags))
+  (let* ((tag-changes (notmuch-tag (notmuch-show-get-message-id) tag-changes))
+        (current-tags (notmuch-show-get-tags))
         (new-tags (notmuch-update-tags current-tags tag-changes)))
     (unless (equal current-tags new-tags)
       (notmuch-show-set-tags new-tags))))
index af107e28f3aa01b8df3f08da431e777002521bd5..edb5a1c70dc709ada7f09a6c57da237c3a254b93 100644 (file)
@@ -904,9 +904,8 @@ Other optional parameters are used as follows:
   target-line: The line number to move to if the target thread does not
                appear in the search results."
   (interactive)
-  (if (null query)
-      (setq query (notmuch-read-query "Notmuch search: ")))
-  (let ((buffer (get-buffer-create (notmuch-search-buffer-title query))))
+  (let* ((query (or query (notmuch-read-query "Notmuch search: ")))
+        (buffer (get-buffer-create (notmuch-search-buffer-title query))))
     (switch-to-buffer buffer)
     (notmuch-search-mode)
     ;; Don't track undo information for this buffer