summaryrefslogtreecommitdiff
path: root/lisp/woman.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2011-09-08 23:32:08 -0700
committerGlenn Morris <rgm@gnu.org>2011-09-08 23:32:08 -0700
commit8aa187e7d11e5f5e7cec6cf5e93df223770374ef (patch)
treee74bcfe988409f1fb9b6b19ccd49053934471104 /lisp/woman.el
parent28c451307be3b882aed6b52448e26450cec160f1 (diff)
downloademacs-8aa187e7d11e5f5e7cec6cf5e93df223770374ef.tar.gz
* lisp/woman.el (woman-special-characters): Add oq and cq quote characters.
Diffstat (limited to 'lisp/woman.el')
-rw-r--r--lisp/woman.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/woman.el b/lisp/woman.el
index 67112ba1745..b1b067b291f 100644
--- a/lisp/woman.el
+++ b/lisp/woman.el
@@ -2937,11 +2937,14 @@ interpolated by `\*x' and `\*(xx' escapes."
("bv" "|") ; bold vertical
;; groff etc. extensions:
+ ;; List these via eg man -Tdvi groff_char > groff_char.dvi.
("lq" "\"")
("rq" "\"")
("aq" "'")
("ha" "^")
("ti" "~")
+ ("oq" "‘") ; u2018
+ ("cq" "’") ; u2019
)
"Alist of special character codes with ASCII and extended-font equivalents.
Each alist elements has the form
@@ -4594,4 +4597,9 @@ logging the message."
(provide 'woman)
+
+;; Local Variables:
+;; coding: utf-8
+;; End:
+
;;; woman.el ends here