diff options
author | Fred Drake <fdrake@acm.org> | 2003-07-16 03:16:34 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-07-16 03:16:34 (GMT) |
commit | 7769bb922483ef8ef461fcca8142b97fe50a3f11 (patch) | |
tree | 8ecf2b0a122a5b743e5a7e814ef66df2084e77a1 /Doc/tools/py2texi.el | |
parent | cca912279af1c2eabb76a42e722ba1724d9d3e7a (diff) | |
download | cpython-7769bb922483ef8ef461fcca8142b97fe50a3f11.zip cpython-7769bb922483ef8ef461fcca8142b97fe50a3f11.tar.gz cpython-7769bb922483ef8ef461fcca8142b97fe50a3f11.tar.bz2 |
Teach this script about \AA and \aa (the Scandanavian A-ring
characters); \AA is used in whatsnew23.tex.
Diffstat (limited to 'Doc/tools/py2texi.el')
-rw-r--r-- | Doc/tools/py2texi.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/tools/py2texi.el b/Doc/tools/py2texi.el index f9d8b96..a3fb94e 100644 --- a/Doc/tools/py2texi.el +++ b/Doc/tools/py2texi.el @@ -200,7 +200,9 @@ Both BEGIN and END are evaled. Moreover, you can reference arguments through \N regular expression notation in strings of BEGIN.") (defconst py2texi-commands - '(("ABC" 0 "ABC") + '(("AA" 0 "@AA{}") + ("aa" 0 "@aa{}") + ("ABC" 0 "ABC") ("appendix" 0 (progn (setq appendix t) "")) ("ASCII" 0 "ASCII") ("author" 1 (progn (setq author (match-string 1 string)) "")) |