branch: elpa/systemd
commit eaaf16f2299071dd71f17c99b2f142bf5164ba55
Author: Mark Oteiza <mvote...@udel.edu>
Commit: Mark Oteiza <mvote...@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))