branch: elpa/flx commit 572f5e6013b25b2adc7609228a9d64052604a5cc Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@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))