]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix regexps in fill-french-nobreak-p broken by last patch.
authorMartin Rudalics <rudalics@gmx.at>
Wed, 26 Dec 2007 18:12:37 +0000 (18:12 +0000)
committerMartin Rudalics <rudalics@gmx.at>
Wed, 26 Dec 2007 18:12:37 +0000 (18:12 +0000)
lisp/textmodes/fill.el

index 42d7ea156c6facafa25a67fbb1d2dd6ccc2457a1..2c7329cd98968525d4df9d73d384d7778e0f4f42 100644 (file)
@@ -316,12 +316,12 @@ after an opening paren or just before a closing paren or a punctuation
 mark such as `?' or `:'.  It is common in French writing to put a space
 at such places, which would normally allow breaking the line at those
 places."
-  (or (looking-at "[ \t]*[])}\e,A;;\e(B?!;:-]")
+  (or (looking-at "[ \t]*[])}\e,A;\e,b;\e(B?!;:-]")
       (save-excursion
        (skip-chars-backward " \t")
        (unless (bolp)
          (backward-char 1)
-         (or (looking-at "[([{\e,A++\e(B]")
+         (or (looking-at "[([{\e,A+\e,b+\e(B]")
              ;; Don't cut right after a single-letter word.
              (and (memq (preceding-char) '(?\t ?\s))
                   (eq (char-syntax (following-char)) ?w)))))))