emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/systemd eaaf16f 033/131: fix indentation


From: ELPA Syncer
Subject: [nongnu] elpa/systemd eaaf16f 033/131: fix indentation
Date: Sun, 29 Aug 2021 11:35:09 -0400 (EDT)

branch: elpa/systemd
commit eaaf16f2299071dd71f17c99b2f142bf5164ba55
Author: Mark Oteiza <mvoteiza@udel.edu>
Commit: Mark Oteiza <mvoteiza@udel.edu>

    fix indentation
---
 systemd-company.el | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/systemd-company.el b/systemd-company.el
index 8bb4153..ae9698c 100644
--- a/systemd-company.el
+++ b/systemd-company.el
@@ -113,14 +113,14 @@
 
 (with-eval-after-load "company"
   (defun systemd-company-backend (command &optional arg &rest ignored)
-     (interactive (list 'interactive))
-     (cl-case command
-       (interactive (company-begin-backend 'systemd-company-backend))
-       (prefix (and (eq major-mode 'systemd-mode)
-                    (company-grab-symbol)))
-       (candidates
-        (cl-remove-if-not (lambda (c) (string-prefix-p arg c))
-                          systemd-company-directives))))
+    (interactive (list 'interactive))
+    (cl-case command
+      (interactive (company-begin-backend 'systemd-company-backend))
+      (prefix (and (eq major-mode 'systemd-mode)
+                   (company-grab-symbol)))
+      (candidates
+       (cl-remove-if-not (lambda (c) (string-prefix-p arg c))
+                         systemd-company-directives))))
   (defun systemd-company--setup-company (enable)
     (when enable
       (add-to-list (make-local-variable 'company-backends) 
'systemd-company-backend))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]