Function: cperl-do-auto-fill
cperl-do-auto-fill is a byte-compiled function defined in
cperl-mode.el.gz.
Signature
(cperl-do-auto-fill)
Documentation
Break out if the line is short enough.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-do-auto-fill ()
"Break out if the line is short enough."
(if (> (save-excursion
(end-of-line)
(current-column))
fill-column)
(let ((c (save-excursion (beginning-of-line)
(cperl-to-comment-or-eol) (point)))
(s (memq (following-char) '(?\s ?\t))) marker)
(if (>= c (point))
;; Don't break line inside code: only inside comment.
nil
(setq marker (point-marker))
(fill-paragraph nil)
(goto-char marker)
;; Is not enough, sometimes marker is a start of line
(if (bolp) (progn (re-search-forward "#+[ \t]*")
(goto-char (match-end 0))))
;; Following space could have gone:
(if (or (not s) (memq (following-char) '(?\s ?\t))) nil
(insert " ")
(backward-char 1))
;; Previous space could have gone:
(or (memq (preceding-char) '(?\s ?\t)) (insert " "))))))