]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/woman.el (woman-special-characters): Add oq and cq quote characters.
authorGlenn Morris <rgm@gnu.org>
Fri, 9 Sep 2011 06:32:08 +0000 (23:32 -0700)
committerGlenn Morris <rgm@gnu.org>
Fri, 9 Sep 2011 06:32:08 +0000 (23:32 -0700)
lisp/ChangeLog
lisp/woman.el

index 2cd428bdddb823bf783047e976e009d67c90200a..76ae02ba3da1af06ec992caf08fa92533884e4c3 100644 (file)
@@ -2,6 +2,7 @@
 
        * woman.el (woman-if-body): When processing an .el block,
        do not delete the next .el block as well.  (Bug#9447)
+       (woman-special-characters): Add oq and cq quote characters.
 
 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
 
index 67112ba174546796a9ad7e8f43294d754c30e953..b1b067b291f97fb05bbabfc6a27579b9ea65180f 100644 (file)
@@ -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)
 
+\f
+;; Local Variables:
+;; coding: utf-8
+;; End:
+
 ;;; woman.el ends here