From: Fred Drake Date: Wed, 16 Jul 2003 14:01:56 +0000 (+0000) Subject: Make it easier to figure out the where a menuselection starts and ends X-Git-Tag: v2.3c1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd5fdd93a9484accb188bc7ef62d2d1af937149a;p=thirdparty%2FPython%2Fcpython.git Make it easier to figure out the where a menuselection starts and ends by controling the font. --- diff --git a/Doc/html/style.css b/Doc/html/style.css index a77fab5c5350..c722db36badc 100644 --- a/Doc/html/style.css +++ b/Doc/html/style.css @@ -115,6 +115,7 @@ div.note .label { margin-right: 0.5em; .newsgroup { font-family: avantgarde, sans-serif; } .url { font-family: avantgarde, sans-serif; } .file { font-family: avantgarde, sans-serif; } +.menuselection { font-family: avantgarde, sans-serif; } .tableheader { background-color: #99ccff; font-family: avantgarde, sans-serif; } diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index cd04ee5173ef..7d50e491ef4c 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -95,7 +95,8 @@ sub do_cmd_textless{ '<' . $_[0]; } sub do_cmd_textunderscore{ '_' . $_[0]; } sub do_cmd_infinity{ '∞' . $_[0]; } sub do_cmd_plusminus{ '±' . $_[0]; } -sub do_cmd_menuselection{ $_[0]; } +sub do_cmd_menuselection{ + return use_wrappers($_[0], '', ''); } sub do_cmd_sub{ ' > ' . $_[0]; } diff --git a/Doc/texinputs/python.sty b/Doc/texinputs/python.sty index c89cedc31103..a85bb7853166 100644 --- a/Doc/texinputs/python.sty +++ b/Doc/texinputs/python.sty @@ -822,7 +822,7 @@ \newcommand{\infinity}{\ensuremath{\infty}} \newcommand{\plusminus}{\ensuremath{\pm}} % \menuselection{Start \sub Programs \sub Python} -\newcommand{\menuselection}[1]{{\def\sub{ \ensuremath{>} }#1}} +\newcommand{\menuselection}[1]{\textsf{\def\sub{ \ensuremath{>} }#1}} % Also for consistency: spell Python "Python", not "python"!