Variable: woman-registers

woman-registers is a variable defined in woman.el.gz.

Value

((".H" 24)
 (".V" 48)
 (".g" 0)
 (".i" left-margin)
 (".j" woman-adjust)
 (".l" fill-column)
 (".s" 12)
 (".u"
  (if woman-nofill 0 1))
 (".v" 48))

Documentation

Register alist: the key is the register name as a string.

Each element has the form (KEY VALUE . INC) -- inc may be nil. Also bound locally in woman2-roff-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
;;; Registers:

(defvar woman-registers			; these are all read-only
  '((".H" 24) (".V" 48)			; resolution in basic units
    (".g" 0)				; not groff
    ;; (If emulating groff need to implement groff italic correction
    ;; \/, e.g. for pic.1)
    (".i" left-margin)			; current indent
    (".j" woman-adjust)			; current adjustment
    (".l" fill-column)			; current line length
    (".s" 12)				; current point size
    (".u" (if woman-nofill 0 1))	; 1/0 in fill/nofill mode
    (".v" 48)				; current vertical line spacing
    )
  "Register alist: the key is the register name as a string.
Each element has the form (KEY VALUE . INC) -- inc may be nil.
Also bound locally in `woman2-roff-buffer'.")