]> git.eshelyaron.com Git - emacs.git/commitdiff
Give 'syntax-propertize-wholelines' a docstring.
authorPhilipp Stephani <phst@google.com>
Sun, 30 May 2021 20:38:48 +0000 (22:38 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 30 May 2021 20:38:48 +0000 (22:38 +0200)
This function is generally useful.

* lisp/emacs-lisp/syntax.el (syntax-propertize-wholelines): Add
docstring.

lisp/emacs-lisp/syntax.el

index 6d5b04b83bb68b90bb1206dd1fb537f433f07d94..0bb1b8916b18ae35ccaddc06a267737eab2f60ee 100644 (file)
@@ -125,6 +125,10 @@ otherwise nil.  That construct can be a two character comment
 delimiter or an Escaped or Char-quoted character."))
 
 (defun syntax-propertize-wholelines (start end)
+  "Extend the region delimited by START and END to whole lines.
+This function is useful for
+`syntax-propertize-extend-region-functions';
+see Info node `(elisp) Syntax Properties'."
   (goto-char start)
   (cons (line-beginning-position)
         (progn (goto-char end)