Variable: woman-string-alist

woman-string-alist is a variable defined in woman.el.gz.

Value

(("S" . "") ("R" . "(Reg.)") ("Tm" . "(TM)") ("lq" . "\"")
 ("rq" . "\"") ("''" . "\"") (".T" . ""))

Documentation

Alist of strings predefined in the -man macro package tmac.an.

Source Code

;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defvar woman-string-alist		; rebound in woman-decode-region
  '(("S" . "") ("R" . "(Reg.)") ("Tm" . "(TM)")
    ("lq" . "\"") ("rq" . "\"")
    ("''" . "\"")			; needed for gcc.1
    (".T" . "")				; output device from -T option?
    )
  "Alist of strings predefined in the -man macro package `tmac.an'.")