From d6cc175401b7ca09beaf4cdf5b3a0504c1076129 Mon Sep 17 00:00:00 2001 From: Psionik K <73710933+psionic-k@users.noreply.github.com> Date: Fri, 23 Dec 2022 18:10:17 -0600 Subject: [PATCH] - package lint inconsistent with Emacs indentation Signed-off-by: Psionik K <73710933+psionic-k@users.noreply.github.com> --- lisp/erk.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/erk.el b/lisp/erk.el index ae5ed83..d9e075f 100644 --- a/lisp/erk.el +++ b/lisp/erk.el @@ -308,10 +308,10 @@ package headers." (with-current-buffer (find-file-noselect (concat dir file) t t) ;; append new author to copyright (print (format "visiting: %s" (buffer-file-name))) - (mapc (lambda (s) (while (re-search-forward (rx (literal s)) nil t) - (replace-match ""))) + (mapc (lambda (s) + (while (re-search-forward (rx (literal s)) nil t) + (replace-match ""))) erk--remove-strings) - (when (re-search-forward ";; Copyright" nil t) (end-of-line) (insert ", " author))