Function: cperl-fix-line-spacing
cperl-fix-line-spacing is an interactive and byte-compiled function
defined in cperl-mode.el.gz.
Signature
(cperl-fix-line-spacing &optional END PARSE-DATA)
Documentation
Improve whitespace in a conditional/loop construct.
Returns some position at the last line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cperl-mode.el.gz
(defun cperl-fix-line-spacing (&optional end parse-data)
"Improve whitespace in a conditional/loop construct.
Returns some position at the last line."
(interactive)
(or end
(setq end (point-max)))
(let ((ee (line-end-position))
(cperl-indent-region-fix-constructs
(or cperl-indent-region-fix-constructs 1))
p pp ml have-brace ret)
(save-excursion
(beginning-of-line)
(setq ret (point))
;; }? continue
;; blah; }
(if (not
(or (looking-at "[ \t]*\\(els\\(e\\|if\\)\\|continue\\|if\\|while\\|for\\(each\\)?\\|unless\\|until\\)\\_>")
(setq have-brace (save-excursion (search-forward "}" ee t)))))
nil ; Do not need to do anything
;; Looking at:
;; }
;; else
(if cperl-merge-trailing-else
(if (looking-at
"[ \t]*}[ \t]*\n[ \t\n]*\\(els\\(e\\|if\\)\\|continue\\)\\_>")
(progn
(search-forward "}")
(setq p (point))
(skip-chars-forward " \t\n")
(delete-region p (point))
(insert (make-string cperl-indent-region-fix-constructs ?\s))
(beginning-of-line)))
(if (looking-at "[ \t]*}[ \t]*\\(els\\(e\\|if\\)\\|continue\\)\\_>")
(save-excursion
(search-forward "}")
(delete-horizontal-space)
(insert "\n")
(setq ret (point))
(if (cperl-indent-line parse-data)
(progn
(cperl-fix-line-spacing end parse-data)
(setq ret (point)))))))
;; Looking at:
;; } else
(if (looking-at "[ \t]*}\\(\t*\\|[ \t][ \t]+\\)\\<\\(els\\(e\\|if\\)\\|continue\\)\\_>")
(progn
(search-forward "}")
(delete-horizontal-space)
(insert (make-string cperl-indent-region-fix-constructs ?\s))
(beginning-of-line)))
;; Looking at:
;; else {
(if (looking-at
"[ \t]*}?[ \t]*\\<\\(els\\(e\\|if\\)\\|continue\\|unless\\|if\\|while\\|for\\(each\\)?\\|until\\)\\>\\(\t*\\|[ \t][ \t]+\\)[^ \t\n#]")
(progn
(forward-word-strictly 1)
(delete-horizontal-space)
(insert (make-string cperl-indent-region-fix-constructs ?\s))
(beginning-of-line)))
;; Looking at:
;; foreach my $var
(if (looking-at
"[ \t]*\\<for\\(each\\)?[ \t]+\\(state\\|my\\|local\\|our\\)\\(\t*\\|[ \t][ \t]+\\)[^ \t\n]")
(progn
(forward-word-strictly 2)
(delete-horizontal-space)
(insert (make-string cperl-indent-region-fix-constructs ?\s))
(beginning-of-line)))
;; Looking at:
;; foreach my $var (
(if (looking-at
(rx (sequence (0+ blank) symbol-start
"for" (opt "each")
(1+ blank)
(or "state" "my" "local" "our")
(0+ blank)
"$" (eval cperl--basic-identifier-rx)
(1+ blank)
(not (in " \t\n#")))))
(progn
(forward-sexp 3)
(delete-horizontal-space)
(insert
(make-string cperl-indent-region-fix-constructs ?\s))
(beginning-of-line)))
;; Looking at (with or without "}" at start, ending after "({"):
;; } foreach my $var () OR {
(if (looking-at
(rx (sequence
(0+ blank)
(opt (sequence "}" (0+ blank) ))
symbol-start
(or "else" "elsif" "continue" "if" "unless" "while" "until"
"try" "catch" "finally" "defer"
(sequence (or "for" "foreach")
(opt
(opt (sequence (1+ blank)
(or "state" "my" "local" "our")))
(0+ blank)
"$" (eval cperl--basic-identifier-rx))))
symbol-end
(group-n 1
(or
(or (sequence (0+ blank) "(")
(sequence (eval cperl--ws*-rx) "{"))
(sequence (0+ blank) "{"))))))
(progn
(setq ml (match-beginning 1)) ; "(" or "{" after control word
(re-search-forward "[({]")
(forward-char -1)
(setq p (point))
(if (eq (following-char) ?\( )
(progn
(forward-sexp 1)
(setq pp (point))) ; past parenthesis-group
;; after `else' or nothing
(if ml ; after `else'
(skip-chars-backward " \t\n")
(beginning-of-line))
(setq pp nil))
;; Now after the sexp before the brace
;; Multiline expr should be special
(setq ml (and pp (save-excursion (goto-char p)
(search-forward "\n" pp t))))
(if (and (or (not pp) (< pp end)) ; Do not go too far...
(looking-at "[ \t\n]*{"))
(progn
(cond
((bolp) ; Were before `{', no if/else/etc
nil)
((looking-at "\\(\t*\\| [ \t]+\\){") ; Not exactly 1 SPACE
(delete-horizontal-space)
(if (if ml
cperl-extra-newline-before-brace-multiline
cperl-extra-newline-before-brace)
(progn
(delete-horizontal-space)
(insert "\n")
(setq ret (point))
(if (cperl-indent-line parse-data)
(progn
(cperl-fix-line-spacing end parse-data)
(setq ret (point)))))
(insert
(make-string cperl-indent-region-fix-constructs ?\s))))
((and (looking-at "[ \t]*\n")
(not (if ml
cperl-extra-newline-before-brace-multiline
cperl-extra-newline-before-brace)))
(setq pp (point))
(skip-chars-forward " \t\n")
(delete-region pp (point))
(insert
(make-string cperl-indent-region-fix-constructs ?\ )))
((and (looking-at "[\t ]*{")
(if ml cperl-extra-newline-before-brace-multiline
cperl-extra-newline-before-brace))
(delete-horizontal-space)
(insert "\n")
(setq ret (point))
(if (cperl-indent-line parse-data)
(progn
(cperl-fix-line-spacing end parse-data)
(setq ret (point))))))
;; Now we are before `{'
(if (looking-at "[ \t\n]*{[ \t]*[^ \t\n#]")
(progn
(skip-chars-forward " \t\n")
(setq pp (point))
(forward-sexp 1)
(setq p (point))
(goto-char pp)
(setq ml (search-forward "\n" p t))
(if (or cperl-break-one-line-blocks-when-indent ml)
;; not good: multi-line BLOCK
(progn
(goto-char (1+ pp))
(delete-horizontal-space)
(insert "\n")
(setq ret (point))
(if (cperl-indent-line parse-data)
(setq ret (cperl-fix-line-spacing end parse-data)))))))))))
(beginning-of-line)
(setq p (point) pp (line-end-position)) ; May be different from ee.
;; Now check whether there is a hanging `}'
;; Looking at:
;; } blah
(if (and
cperl-fix-hanging-brace-when-indent
have-brace
(not (looking-at "[ \t]*}[ \t]*\\(\\<\\(els\\(if\\|e\\)\\|continue\\|while\\|until\\)\\>\\|$\\|#\\)"))
(condition-case nil
(progn
(up-list 1)
(if (and (<= (point) pp)
(eq (preceding-char) ?\} )
(cperl-after-block-and-statement-beg (point-min)))
t
(goto-char p)
nil))
(error nil)))
(progn
(forward-char -1)
(skip-chars-backward " \t")
(if (bolp)
;; `}' was the first thing on the line, insert NL *after* it.
(progn
(cperl-indent-line parse-data)
(search-forward "}")
(delete-horizontal-space)
(insert "\n"))
(delete-horizontal-space)
(or (eq (preceding-char) ?\;)
(bolp)
(and (eq (preceding-char) ?\} )
(cperl-after-block-p (point-min)))
(insert ";"))
(insert "\n")
(setq ret (point)))
(if (cperl-indent-line parse-data)
(setq ret (cperl-fix-line-spacing end parse-data)))
(beginning-of-line)))))
ret))