From 31ab298df665e949fdafe388f5933338bc8c1e73 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 22 Jan 2001 17:50:42 +0000 Subject: [PATCH] Remove the dollar sign from the formatting of environment variables -- too Unix-specific, and not really needed. (Already fixed the HTML formatting, but forgot to mention it in the checkin for python.perl 1.94.) --- Doc/texinputs/python.sty | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/texinputs/python.sty b/Doc/texinputs/python.sty index b4b6aea31d6..9aa6700e22d 100644 --- a/Doc/texinputs/python.sty +++ b/Doc/texinputs/python.sty @@ -805,9 +805,9 @@ $\!\rfloor\!$% }} \newcommand{\envvar}[1]{% - \$#1% $ <-- bow to font-lock 3 times! - \index{#1@{\$#1}}% $ - \index{environment variables!{\$#1}}% $ + #1% + \index{#1@{#1}}% + \index{environment variables!{#1}}% } \newcommand{\makevar}[1]{#1} % variable in a Makefile \newcommand{\character}[1]{\samp{#1}}