]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove newline from erc-fill regexp
authorF. Jason Park <jp@neverwas.me>
Mon, 2 Oct 2023 23:29:28 +0000 (16:29 -0700)
committerF. Jason Park <jp@neverwas.me>
Tue, 3 Oct 2023 00:21:26 +0000 (17:21 -0700)
* lisp/erc/erc-fill.el (erc-fill): Remove newline from character
alternative in pattern for skipping past blank and whitespace-only
lines.  It seems that as of e61a0398 "regex.c: Consolidate the two
analysis functions", Emacs no longer sees a newline-dollar sequence as
matching an empty line.  Also lose `save-match-data', which doesn't
appear to serve any purpose here.

lisp/erc/erc-fill.el

index f4835f7127831f6ea049ce4f458fe13993cfac6e..0e6b5a3efb8192ce51282cddb731bb20b16251e5 100644 (file)
@@ -158,9 +158,8 @@ You can put this on `erc-insert-modify-hook' and/or `erc-send-modify-hook'."
     (when (or erc-fill--function erc-fill-function)
       ;; skip initial empty lines
       (goto-char (point-min))
-      (save-match-data
-        (while (and (looking-at "[ \t\n]*$")
-                    (= (forward-line 1) 0))))
+      (while (and (looking-at (rx bol (* (in " \t")) eol))
+                  (zerop (forward-line 1))))
       (unless (eobp)
         (save-restriction
           (narrow-to-region (point) (point-max))