Function: woman-display-extended-fonts
woman-display-extended-fonts is an interactive and byte-compiled
function defined in woman.el.gz.
Signature
(woman-display-extended-fonts)
Documentation
Display table of glyphs of graphic characters and their octal codes.
All the octal codes in the ranges [32..127] and [160..255] are displayed
together with the corresponding glyphs from the default and symbol fonts.
Useful for constructing the alist variable woman-special-characters(var)/woman-special-characters(fun).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/woman.el.gz
(defun woman-display-extended-fonts ()
"Display table of glyphs of graphic characters and their octal codes.
All the octal codes in the ranges [32..127] and [160..255] are displayed
together with the corresponding glyphs from the default and symbol fonts.
Useful for constructing the alist variable `woman-special-characters'."
(interactive)
(with-output-to-temp-buffer "*WoMan Extended Font Map*"
(with-current-buffer standard-output
(let ((i 32))
(while (< i 256)
(insert (format "\\%03o " i) (string i) " " (string i))
(put-text-property (1- (point)) (point)
'face 'woman-symbol)
(insert " ")
(setq i (1+ i))
(when (= i 128) (setq i 160) (insert "\n"))
(if (zerop (% i 8)) (insert "\n")))))
(help-print-return-message)))