Function: fill-find-break-point
fill-find-break-point is a byte-compiled function defined in
fill.el.gz.
Signature
(fill-find-break-point LIMIT)
Documentation
Move point to a proper line breaking position of the current line.
Don't move back past the buffer position LIMIT.
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 LIMIT.
If the charset has no such property, do nothing.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/fill.el.gz
(defun fill-find-break-point (limit)
"Move point to a proper line breaking position of the current line.
Don't move back past the buffer position LIMIT.
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 LIMIT.
If the charset has no such property, do nothing."
(let ((func (or
(aref fill-find-break-point-function-table (following-char))
(aref fill-find-break-point-function-table (preceding-char)))))
(if (and func (fboundp func))
(funcall func limit))))