aboutsummaryrefslogtreecommitdiff
path: root/emacs/make-deps.el
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2020-08-08 13:49:37 +0200
committerDavid Bremner <david@tethera.net>2020-08-09 20:47:52 -0300
commit6fb7d35069c8770b872128156cb4f0511da6b6e9 (patch)
tree0171ff5a63db5699867511f2047a8f1c5a643f79 /emacs/make-deps.el
parenta4617f29ce81e7ae3e0cb747fdb9070f88407a28 (diff)
emacs: Remove excess empty lines
Most people who write lots of lisp tend to only sparsely use empty "separator" lines within forms. In lisp they feel unnecessary and since most files stick to this convention we get a bit confused when there are extra empty lines. It feels like the s-expressions are falling into pieces. All of this is especially true between a function's doc-string and body because the doc-string is colored differently, which visually already separates it quite sufficiently from the code that follows.
Diffstat (limited to 'emacs/make-deps.el')
-rw-r--r--emacs/make-deps.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/emacs/make-deps.el b/emacs/make-deps.el
index 5b6db698..dcac319c 100644
--- a/emacs/make-deps.el
+++ b/emacs/make-deps.el
@@ -23,7 +23,6 @@
(defun batch-make-deps ()
"Invoke `make-deps' for each file on the command line."
-
(setq debug-on-error t)
(dolist (file command-line-args-left)
(let ((default-directory command-line-default-directory))
@@ -37,7 +36,6 @@
This prints make dependencies to `standard-output' based on the
top-level `require' expressions in the current buffer. Paths in
rules will be given relative to DIR, or `default-directory'."
-
(setq dir (or dir default-directory))
(save-excursion
(goto-char (point-min))