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

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

[nongnu] elpa/flx 572f5e6013 170/182: Prevent non-heading comments from


From: ELPA Syncer
Subject: [nongnu] elpa/flx 572f5e6013 170/182: Prevent non-heading comments from being treated as such
Date: Tue, 13 Dec 2022 03:59:40 -0500 (EST)

branch: elpa/flx
commit 572f5e6013b25b2adc7609228a9d64052604a5cc
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Prevent non-heading comments from being treated as such
    
    `outline-minor-mode' treats comments that begin with tree or more
    semicolons as outline headings.  These comments are just comments.
---
 flx.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/flx.el b/flx.el
index 13cdbecc58..9e3bc36fe8 100644
--- a/flx.el
+++ b/flx.el
@@ -66,7 +66,7 @@
   "Face used by flx for highlighting flx match characters."
   :group 'flx)
 
-;;; Do we need more word separators than ST?
+;; Do we need more word separators than ST?
 (defsubst flx-word-p (char)
   "Check if CHAR is a word character."
   (and char
@@ -404,13 +404,13 @@ SCORE of nil means to clear the properties."
 (defvar flx-file-cache nil
   "Cached heatmap info about strings.")
 
-;;; Reset value on every file load.
+;; Reset value on every file load.
 (setq flx-file-cache (flx-make-filename-cache))
 
 (defvar flx-strings-cache nil
   "Cached heatmap info about filenames.")
 
-;;; Reset value on every file load.
+;; Reset value on every file load.
 (setq flx-strings-cache (flx-make-string-cache))
 
 



reply via email to

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