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

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

[nongnu] elpa/hl-block-mode 50e0e75394 2/7: Cleanup: quiet single quote


From: ELPA Syncer
Subject: [nongnu] elpa/hl-block-mode 50e0e75394 2/7: Cleanup: quiet single quote warnings
Date: Sun, 8 Jan 2023 02:59:55 -0500 (EST)

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

    Cleanup: quiet single quote warnings
---
 hl-block-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hl-block-mode.el b/hl-block-mode.el
index 21476ed721..cbf186706b 100644
--- a/hl-block-mode.el
+++ b/hl-block-mode.el
@@ -73,7 +73,7 @@ Useful for languages that use S-expressions to avoid overly 
nested highlighting.
 
 (defun hl-block--syntax-prev-bracket (pt)
   "A version of `syntax-ppss' to match curly braces.
-PT is typically the '(point)'."
+PT is typically the `(point)'."
   (let ((beg (ignore-errors (elt (syntax-ppss pt) 1))))
     (when beg
       (cond
@@ -371,7 +371,7 @@ Argument BLOCK-LIST represents start-end ranges of braces."
 ;; Internal Mode Management
 
 (defun hl-block-mode-enable ()
-  "Turn on 'hl-block-mode' for the current buffer."
+  "Turn on `hl-block-mode' for the current buffer."
   (hl-block--time-buffer-local-enable)
 
   ;; Setup brackets:
@@ -388,7 +388,7 @@ Argument BLOCK-LIST represents start-end ranges of braces."
             (push ch hl-block-bracket)))))))
 
 (defun hl-block-mode-disable ()
-  "Turn off 'hl-block-mode' for the current buffer."
+  "Turn off `hl-block-mode' for the current buffer."
   (hl-block--overlay-clear)
   (kill-local-variable 'hl-block--overlay)
   (kill-local-variable 'hl-block-bracket)



reply via email to

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