|
From: | Tassilo Horn |
Subject: | Re: Change indentation of keyword lists/arrays |
Date: | Wed, 20 Oct 2021 21:02:08 +0200 |
User-agent: | mu4e 1.7.0; emacs 29.0.50 |
Juri Linkov <juri@linkov.net> writes: > Please change the indentation of quoted lists. It takes > too much time to manually delete excessive indentation > every time with C-d C-d C-d C-d C-d C-d C-d ... to turn such code: > > (memq this-command > '(universal-argument universal-argument-more > digit-argument negative-argument)) > > to more readable: > > (memq this-command > '(universal-argument universal-argument-more > digit-argument negative-argument)) Don't we use (memq this-command '( universal-argument universal-argument-more digit-argument negative-argument)) with the space after the paren to indicate that this is surely just a "data list" and no (possibly quoted) funcall (being eval-ed later). Bye, Tassilo
[Prev in Thread] | Current Thread | [Next in Thread] |