Function: rst-adjust-adornment

rst-adjust-adornment is an interactive and byte-compiled function defined in rst.el.gz.

Signature

(rst-adjust-adornment PFXARG)

Documentation

Call rst-adjust-section interactively.

Keep this for compatibility for older bindings (are there any?). Argument PFXARG has the same meaning as for rst-adjust.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/rst.el.gz
(defun rst-adjust-adornment (pfxarg)
  "Call `rst-adjust-section' interactively.
Keep this for compatibility for older bindings (are there any?).
Argument PFXARG has the same meaning as for `rst-adjust'."
  (interactive "P")

  (let* ((reverse-direction (and pfxarg (< (prefix-numeric-value pfxarg) 0)))
         (toggle-style (and pfxarg (not reverse-direction))))
    (rst-adjust-section toggle-style reverse-direction)))