summaryrefslogtreecommitdiffstats
path: root/doc/messageBox.n
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2004-05-29 19:00:29 (GMT)
committerjenglish <jenglish@flightlab.com>2004-05-29 19:00:29 (GMT)
commitdf2af8293fc2b2a31a501cf87e04b8b34729dc9f (patch)
treea2bd01de10c07df4bc651305ee9c1279c13b8235 /doc/messageBox.n
parent45bac8aee04c4dd04060446892e217395e216dc2 (diff)
downloadtk-df2af8293fc2b2a31a501cf87e04b8b34729dc9f.zip
tk-df2af8293fc2b2a31a501cf87e04b8b34729dc9f.tar.gz
tk-df2af8293fc2b2a31a501cf87e04b8b34729dc9f.tar.bz2
Fix minor markup errors (backslash is \e, not \b).
Diffstat (limited to 'doc/messageBox.n')
-rw-r--r--doc/messageBox.n10
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