Function: unjustify-current-line
unjustify-current-line is a byte-compiled function defined in
fill.el.gz.
Signature
(unjustify-current-line)
Documentation
Remove justification whitespace from current line.
If the line is centered or right-justified, this function removes any indentation past the left margin. If the line is full-justified, it removes extra spaces between words. It does nothing in other justification modes.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/fill.el.gz
(defun unjustify-current-line ()
"Remove justification whitespace from current line.
If the line is centered or right-justified, this function removes any
indentation past the left margin. If the line is full-justified, it removes
extra spaces between words. It does nothing in other justification modes."
(let ((justify (current-justification)))
(cond ((eq 'left justify) nil)
((eq nil justify) nil)
((eq 'full justify) ; full justify: remove extra spaces
(beginning-of-line-text)
(canonically-space-region (point) (line-end-position)))
((memq justify '(center right))
(save-excursion
(move-to-left-margin nil t)
;; Position ourselves after any fill-prefix.
(if (and fill-prefix
(not (string-equal fill-prefix ""))
(equal fill-prefix
(buffer-substring
(point) (min (point-max) (+ (length fill-prefix)
(point))))))
(forward-char (length fill-prefix)))
(delete-region (point) (progn (skip-chars-forward " \t")
(point))))))))