Function: set-justification-right

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

Signature

(set-justification-right B E)

Documentation

Make paragraphs in the region right-justified.

This means lines are flush (lined up) at the right margin and ragged on the left. 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-right (b e)
  "Make paragraphs in the region right-justified.
This means lines are flush (lined up) at the right margin and ragged
on the left.
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 'right t))