# HG changeset patch # User Martin Rudalics # Date 1198660066 0 # Node ID d8528753376d439529ef804d1542c528d04b2294 # Parent d64fd512c6e3a65a4182f6b3962756dcddaf2dd9 (fill-find-break-point): Fix doc-string typo. diff -r d64fd512c6e3 -r d8528753376d lisp/textmodes/fill.el --- a/lisp/textmodes/fill.el Wed Dec 26 05:02:04 2007 +0000 +++ b/lisp/textmodes/fill.el Wed Dec 26 09:07:46 2007 +0000 @@ -316,12 +316,12 @@ 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]*[])},A;,b;(B?!;:-]") + (or (looking-at "[ \t]*[])},A;;(B?!;:-]") (save-excursion (skip-chars-backward " \t") (unless (bolp) (backward-char 1) - (or (looking-at "[([{,A+,b+(B]") + (or (looking-at "[([{,A++(B]") ;; Don't cut right after a single-letter word. (and (memq (preceding-char) '(?\t ?\s)) (eq (char-syntax (following-char)) ?w))))))) @@ -391,7 +391,7 @@ This function is called when we are going to break the current line after or before a non-ASCII character. If the charset of the character has the property `fill-find-break-point-function', this -function calls the property value as a function with one arg LINEBEG. +function calls the property value as a function with one arg LIMIT. If the charset has no such property, do nothing." (let* ((ch (following-char)) (charset (char-charset ch))