Function: set-justification-full

set-justification-full is an interactive and byte-compiled function defined in fill.el.gz.

Signature

(set-justification-full B E)

Documentation

Make paragraphs in the region fully justified.

This makes lines be lined up on both margins by inserting spaces between words. If the mark is not active, this applies to the current paragraph.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/fill.el.gz
(defun set-justification-full (b e)
  "Make paragraphs in the region fully justified.
This makes lines be lined up on both margins by inserting spaces between words.
If the mark is not active, this applies to the current paragraph."
  (interactive (list (if mark-active (region-beginning) (point))
		     (if mark-active (region-end) (point))))
  (set-justification b e 'full t))