From: Jonas Bernoulli Date: Sat, 8 Aug 2020 11:49:40 +0000 (+0200) Subject: emacs: Only set one variable per setq form X-Git-Tag: 0.31_rc0~40 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=18d289c86309ae796e6f027c289b17ccdd38f220;hp=18d289c86309ae796e6f027c289b17ccdd38f220 emacs: Only set one variable per setq form It's a bit weird to avoid having to write the "(setq ... )" more than once, just because we can. In a language that uses '=' for the same purpose we also happily use that once per assignment. While there are no benefit to using just one 'setq' there are some drawbacks. It is not always clear on first what is a key and what a value and as a result it is easy to make a mistake. Also it becomes harder to comment out just one assignment. ---