Use conventional commenting style for Emacs Lisp

This commit is contained in:
Ohad Livne 2025-12-13 23:56:54 +02:00
parent b16f6c410e
commit 7e4ddb6dab
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

@ -1,10 +1,10 @@
( (
; keep-sorted start ;; keep-sorted start
(magit-commit "--gpg-sign=") (magit-commit "--gpg-sign=")
(magit-diff:magit-revision-mode "--no-ext-diff" "--stat" "--show-signature") (magit-diff:magit-revision-mode "--no-ext-diff" "--stat" "--show-signature")
(magit-fetch "--force" "--prune" "--tags") (magit-fetch "--force" "--prune" "--tags")
(magit-log:magit-log-mode "-n256" "--graph" "--decorate" "--show-signature") (magit-log:magit-log-mode "-n256" "--graph" "--decorate" "--show-signature")
(magit-merge "--gpg-sign=") (magit-merge "--gpg-sign=")
(magit-tag "--sign") (magit-tag "--sign")
; keep-sorted end ;; keep-sorted end
) )