]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix c-ts-mode--fill-paragraph
authorYuan Fu <casouri@gmail.com>
Fri, 13 Jan 2023 01:29:14 +0000 (17:29 -0800)
committerYuan Fu <casouri@gmail.com>
Fri, 13 Jan 2023 08:55:24 +0000 (00:55 -0800)
Example:

       doc: /* Return non-nil if NODE1 and NODE2 are the same node.
If any one of NODE1 and NODE2 is nil, return nil.
This function uses the same equivalence metric as `equal'.  */

* lisp/progmodes/c-ts-mode.el (c-ts-mode--fill-paragraph): Fix the
case where there are words before the /*, like the example above.

lisp/progmodes/c-ts-mode.el

index e53ed390ba13ed84363fe49723bad72b9993649c..ef5a9c2195a63669c7d88f8d6751cf14ff17f505 100644 (file)
@@ -726,7 +726,10 @@ ARG is passed to `fill-paragraph'."
           ;; Let `fill-paragraph' do its thing.
           (goto-char orig-point)
           (narrow-to-region start end)
-          (funcall #'fill-paragraph arg)
+          ;; We don't want to fill the region between START and
+          ;; START-MARKER, otherwise the filling function might delete
+          ;; some spaces there.
+          (fill-region start-marker end arg)
           ;; Unmask.
           (when start-marker
             (goto-char start-marker)