summaryrefslogtreecommitdiffstats
path: root/doc/labelframe.n
diff options
context:
space:
mode:
authordgp <dgp@noemail.net>2007-10-26 20:13:21 (GMT)
committerdgp <dgp@noemail.net>2007-10-26 20:13:21 (GMT)
commit4064529ba9703e507a2b41d4cccbec2b661d1d48 (patch)
tree8355bd802491be2c1de242e0598914b0bb36fca5 /doc/labelframe.n
parent67ef9220fa871ce137f6e2cbb4fe3784396e1ff3 (diff)
downloadtk-4064529ba9703e507a2b41d4cccbec2b661d1d48.zip
tk-4064529ba9703e507a2b41d4cccbec2b661d1d48.tar.gz
tk-4064529ba9703e507a2b41d4cccbec2b661d1d48.tar.bz2
* doc/*.1: Revert doc changes that broke
* doc/*.3: `make html` so we can get the release * doc/*.n: out the door. FossilOrigin-Name: 4fe4274467a1800529131c86ff155c4c0b03db8a
Diffstat (limited to 'doc/labelframe.n')
-rw-r--r--doc/labelframe.n8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/labelframe.n b/doc/labelframe.n
index 07a2647..09ec0b9 100644
--- a/doc/labelframe.n
+++ b/doc/labelframe.n
@@ -5,7 +5,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: labelframe.n,v 1.4 2007/10/22 14:33:13 dkf Exp $
+'\" RCS: @(#) $Id: labelframe.n,v 1.5 2007/10/26 20:13:23 dgp Exp $
'\"
.so man.macros
.TH labelframe n 8.4 Tk "Tk Built-In Commands"
@@ -143,9 +143,9 @@ This shows how to build part of a GUI for a hamburger vendor. The
the kinds of things that the choices are being made over.
.PP
.CS
-grid [\fBlabelframe\fR .burger -text "Burger"] \e
+grid [\fBlabelframe\fR .burger -text "Burger"] \\
[\fBlabelframe\fR .bun -text "Bun"] -sticky news
-grid [\fBlabelframe\fR .cheese -text "Cheese Option"] \e
+grid [\fBlabelframe\fR .cheese -text "Cheese Option"] \\
[\fBlabelframe\fR .pickle -text "Pickle Option"] -sticky news
foreach {type name val} {
burger Beef beef
@@ -168,7 +168,7 @@ foreach {type name val} {
pickle Onions onion
pickle Chili chili
} {
- set w [radiobutton .$type.$val -text $name -anchor w \e
+ set w [radiobutton .$type.$val -text $name -anchor w \\
-variable $type -value $val]
pack $w -side top -fill x
}