diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/libmacui.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/libmacui.tex')
-rw-r--r-- | Doc/libmacui.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libmacui.tex b/Doc/libmacui.tex index 546065f..bf8a30f 100644 --- a/Doc/libmacui.tex +++ b/Doc/libmacui.tex @@ -18,7 +18,7 @@ most 255 characters long, is displayed. Control is returned when the user clicks ``OK''. \end{funcdesc} -\begin{funcdesc}{AskString}{prompt\optional{\, default}} +\begin{funcdesc}{AskString}{prompt\optional{, default}} Ask the user to input a string value, in a modal dialog. \var{Prompt} is the promt message, the optional \var{default} arg is the initial value for the string. All strings can be at most 255 bytes @@ -26,7 +26,7 @@ long. \var{AskString} returns the string entered or \code{None} in case the user cancelled. \end{funcdesc} -\begin{funcdesc}{AskYesNoCancel}{question\optional{\, default}} +\begin{funcdesc}{AskYesNoCancel}{question\optional{, default}} Present a dialog with text \var{question} and three buttons labelled ``yes'', ``no'' and ``cancel''. Return \code{1} for yes, \code{0} for no and \code{-1} for cancel. The default return value chosen by @@ -34,7 +34,7 @@ hitting return is \code{0}. This can be changed with the optional \var{default} argument. \end{funcdesc} -\begin{funcdesc}{ProgressBar}{\optional{label\, maxval}} +\begin{funcdesc}{ProgressBar}{\optional{label, maxval}} Display a modeless progress dialog with a thermometer bar. \var{Label} is the textstring displayed (default ``Working...''), \var{maxval} is the value at which progress is complete (default 100). The returned |