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

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

[nongnu] elpa/hl-block-mode 22d7444487 1/2: Cleanup: formatting


From: ELPA Syncer
Subject: [nongnu] elpa/hl-block-mode 22d7444487 1/2: Cleanup: formatting
Date: Mon, 9 Jan 2023 01:00:31 -0500 (EST)

branch: elpa/hl-block-mode
commit 22d744448758c35218651a9c790dafec05ba0186
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: formatting
---
 hl-block-mode.el | 33 ++++++++++++++++-----------------
 1 file changed, 16 insertions(+), 17 deletions(-)

diff --git a/hl-block-mode.el b/hl-block-mode.el
index 66166c549d..2f651921ed 100644
--- a/hl-block-mode.el
+++ b/hl-block-mode.el
@@ -183,28 +183,27 @@ typically `(point)'."
          ;; Iterator.
          (i 0))
     (pcase-let ((`(,beg-prev . ,end-prev) (pop block-list)))
-      (unless end-prev ;; May be `nil' for un-matched brackets.
+      (unless end-prev ; May be `nil' for un-matched brackets.
         (setq end-prev end-fallback))
       (while block-list
         (pcase-let ((`(,beg . ,end) (pop block-list)))
-          (unless end ;; May be `nil' for un-matched brackets.
+          (unless end ; May be `nil' for un-matched brackets.
             (setq end end-fallback))
           (let ((elem-overlay-beg (make-overlay beg beg-prev))
                 (elem-overlay-end (make-overlay end-prev end)))
 
-            (let
-                ( ;; Calculate the face with the tint color at this highlight 
level.
-                 (hl-face
-                  (list
-                   :background
-                   (hl-block--color-values-as-string
-                    (let ((i-tint (- block-list-len i)))
-                      (cond
-                       (do-highlight
-                        (hl-block--color-tint-add bg-color bg-color-tint 
i-tint))
-                       (t
-                        (hl-block--color-tint-sub bg-color bg-color-tint 
i-tint)))))
-                   :extend t)))
+            ;; Calculate the face with the tint color at this highlight level.
+            (let ((hl-face
+                   (list
+                    :background
+                    (hl-block--color-values-as-string
+                     (let ((i-tint (- block-list-len i)))
+                       (cond
+                        (do-highlight
+                         (hl-block--color-tint-add bg-color bg-color-tint 
i-tint))
+                        (t
+                         (hl-block--color-tint-sub bg-color bg-color-tint 
i-tint)))))
+                    :extend t)))
 
               (overlay-put elem-overlay-beg 'face hl-face)
               (overlay-put elem-overlay-end 'face hl-face))
@@ -227,7 +226,7 @@ Argument BLOCK-LIST represents start-end ranges of braces."
     (let ((elem-overlay-beg (make-overlay beg (1+ beg))))
       (overlay-put elem-overlay-beg 'face hl-block-bracket-face)
       (push elem-overlay-beg hl-block--overlay)
-      (when end ;; May be `nil' for un-matched brackets.
+      (when end ; May be `nil' for un-matched brackets.
         (let ((elem-overlay-end (make-overlay (1- end) end)))
           (overlay-put elem-overlay-end 'face hl-block-bracket-face)
           (push elem-overlay-end hl-block--overlay))))))
@@ -332,7 +331,7 @@ Argument BLOCK-LIST represents start-end ranges of braces."
     (cond
      (is-mode-active
       (hl-block--overlay-refresh))
-     (t ;; Cancel the timer until the current buffer uses this mode again.
+     (t ; Cancel the timer until the current buffer uses this mode again.
       (hl-block--time-ensure nil)))))
 
 (defun hl-block--time-ensure (state)



reply via email to

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