diff options
author | jenglish@flightlab.com <jenglish> | 2004-05-29 19:00:29 (GMT) |
---|---|---|
committer | jenglish@flightlab.com <jenglish> | 2004-05-29 19:00:29 (GMT) |
commit | 688ac9513dbda30d8d9e3f254b1e01355b25f56e (patch) | |
tree | a2bd01de10c07df4bc651305ee9c1279c13b8235 /doc/messageBox.n | |
parent | baa8fff188efd14ba4bdae641708ca3d9bd37058 (diff) | |
download | tk-688ac9513dbda30d8d9e3f254b1e01355b25f56e.zip tk-688ac9513dbda30d8d9e3f254b1e01355b25f56e.tar.gz tk-688ac9513dbda30d8d9e3f254b1e01355b25f56e.tar.bz2 |
Fix minor markup errors (backslash is \e, not \b).
Diffstat (limited to 'doc/messageBox.n')
-rw-r--r-- | doc/messageBox.n | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/messageBox.n b/doc/messageBox.n index 36bcc36..887cc2f 100644 --- a/doc/messageBox.n +++ b/doc/messageBox.n @@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: messageBox.n,v 1.6 2004/05/24 21:23:23 dkf Exp $ +'\" RCS: @(#) $Id: messageBox.n,v 1.7 2004/05/29 19:00:32 jenglish Exp $ '\" .so man.macros .TH tk_messageBox n 4.2 Tk "Tk Built-In Commands" @@ -86,12 +86,12 @@ and \fBcancel\fR. .PP .SH EXAMPLE .CS -set answer [tk_messageBox \-message "Really quit?" \b - \-icon question \-type yesno \b - \-detail "Select \b"Yes\b" to make the application exit"] +set answer [tk_messageBox \-message "Really quit?" \e + \-icon question \-type yesno \e + \-detail "Select \e"Yes\e" to make the application exit"] switch -- $answer { yes exit - no {tk_messageBox \-message "I know you like this application!" \b + no {tk_messageBox \-message "I know you like this application!" \e \-type ok} } .CE |