diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-11-17 21:16:47 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-11-17 21:16:47 (GMT) |
commit | 4a3bf71d87948d9b719af393dbb70e45edbe66b3 (patch) | |
tree | ea6fe38ab1c38de9064053d2694ae9e071e033ec /doc | |
parent | 83223c2f03c8ea095a589284fab182b4fd5d6e17 (diff) | |
download | tk-4a3bf71d87948d9b719af393dbb70e45edbe66b3.zip tk-4a3bf71d87948d9b719af393dbb70e45edbe66b3.tar.gz tk-4a3bf71d87948d9b719af393dbb70e45edbe66b3.tar.bz2 |
Fix the escaping of leading dots in lines that start with
a widget name, so that nroff doesn't mistake it as a non-existing macro
and skips the entire line
Diffstat (limited to 'doc')
-rw-r--r-- | doc/pack.n | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -264,7 +264,7 @@ label .b \-text "This widget is at the bottom" \-bg green label .l \-text "Left\\nHand\\nSide" label .r \-text "Right\\nHand\\nSide" text .mid -\.mid insert end "This layout is like Java's BorderLayout" +\&.mid insert end "This layout is like Java's BorderLayout" # Lay them out \fBpack\fR .t \-side top \-fill x \fBpack\fR .b \-side bottom \-fill x |