emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r105691: * lisp/woman.el (woman-speci


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r105691: * lisp/woman.el (woman-special-characters): Add oq and cq quote characters.
Date: Thu, 08 Sep 2011 23:32:08 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 105691
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2011-09-08 23:32:08 -0700
message:
  * lisp/woman.el (woman-special-characters): Add oq and cq quote characters.
modified:
  lisp/ChangeLog
  lisp/woman.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-09-09 06:23:47 +0000
+++ b/lisp/ChangeLog    2011-09-09 06:32:08 +0000
@@ -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  <address@hidden>
 

=== modified file 'lisp/woman.el'
--- a/lisp/woman.el     2011-09-09 06:23:47 +0000
+++ b/lisp/woman.el     2011-09-09 06:32:08 +0000
@@ -2937,11 +2937,14 @@
     ("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 @@
 
 (provide 'woman)
 
+
+;; Local Variables:
+;; coding: utf-8
+;; End:
+
 ;;; woman.el ends here


reply via email to

[Prev in Thread] Current Thread [Next in Thread]