From: Fred Drake Date: Wed, 16 Jul 2003 03:16:34 +0000 (+0000) Subject: Teach this script about \AA and \aa (the Scandanavian A-ring X-Git-Tag: v2.3c1~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7769bb922483ef8ef461fcca8142b97fe50a3f11;p=thirdparty%2FPython%2Fcpython.git Teach this script about \AA and \aa (the Scandanavian A-ring characters); \AA is used in whatsnew23.tex. --- diff --git a/Doc/tools/py2texi.el b/Doc/tools/py2texi.el index f9d8b96b8d45..a3fb94ee3139 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)) ""))