From ea97b5528a0c897039aba3ec7ed69f22ab7c8598 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 24 Oct 2021 04:05:32 +0100 Subject: [PATCH] chore(version-control/diff-hl): minor tweaks and cleanup --- modules/version-control/siren-diff-hl.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/version-control/siren-diff-hl.el b/modules/version-control/siren-diff-hl.el index 091383e..db68b02 100644 --- a/modules/version-control/siren-diff-hl.el +++ b/modules/version-control/siren-diff-hl.el @@ -33,7 +33,8 @@ (diff-hl-flydiff-mode 1)) (defgroup siren-diff-hl nil - "Siren specific tweaks to diff-hl.") + "Siren specific tweaks to diff-hl." + :group 'diff-hl) (defface siren-diff-hl-insert '((default :inherit diff-hl-insert)) @@ -57,7 +58,7 @@ (intern (format "siren-diff-hl-%s" type))) (defun siren-diff-hl-set-render-mode () - (diff-hl-margin-mode (if (window-system) -1 1))) + (diff-hl-margin-mode (if window-system -1 1))) :config (siren-diff-hl-set-render-mode)