From: David Bremner Date: Sun, 2 Jun 2013 14:57:01 +0000 (-0300) Subject: emacs: replace setq + let with let* X-Git-Tag: 0.16_rc1~83 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=63782f4023680dd08c88024b50e5e48dfa3f50cd;hp=63782f4023680dd08c88024b50e5e48dfa3f50cd emacs: replace setq + let with let* 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. ---