diff options
author | hobbs <hobbs> | 1999-12-21 23:54:17 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-21 23:54:17 (GMT) |
commit | c30bbd5faddbda1bb9f7ce951124d2c87110f082 (patch) | |
tree | 2081b0bdb121c6d6e328ba6a0b9a70bca8a0ea93 /doc | |
parent | 2b1792d5ac99fb69b4204ce4f3bff96fd78c527b (diff) | |
download | tk-c30bbd5faddbda1bb9f7ce951124d2c87110f082.zip tk-c30bbd5faddbda1bb9f7ce951124d2c87110f082.tar.gz tk-c30bbd5faddbda1bb9f7ce951124d2c87110f082.tar.bz2 |
* doc/MeasureChar.3: fixed docs for Tk_MeasureChars to reflect code
* doc/listbox.n: fixed formatting problem
Diffstat (limited to 'doc')
-rw-r--r-- | doc/MeasureChar.3 | 6 | ||||
-rw-r--r-- | doc/listbox.n | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/MeasureChar.3 b/doc/MeasureChar.3 index 2df934c..3eac03e 100644 --- a/doc/MeasureChar.3 +++ b/doc/MeasureChar.3 @@ -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: MeasureChar.3,v 1.3 1999/04/16 01:51:08 stanton Exp $ +'\" RCS: @(#) $Id: MeasureChar.3,v 1.4 1999/12/21 23:54:17 hobbs Exp $ '\" .so man.macros .TH Tk_MeasureChars 3 8.1 Tk "Tk Library Procedures" @@ -43,9 +43,9 @@ The maximum number of bytes to consider when measuring or drawing \fIstring\fR. Must be greater than or equal to 0. .VE 8.1 .AP int maxPixels in -If \fImaxPixels\fR is greater than 0, it specifies the longest permissible +If \fImaxPixels\fR is >= 0, it specifies the longest permissible line length in pixels. Characters from \fIstring\fR are processed only -until this many pixels have been covered. If \fImaxPixels\fR is <= 0, then +until this many pixels have been covered. If \fImaxPixels\fR is < 0, then the line length is unbounded and the \fIflags\fR argument is ignored. .AP int flags in Various flag bits OR-ed together: TK_PARTIAL_OK means include a character diff --git a/doc/listbox.n b/doc/listbox.n index 8c6e820..3973fe8 100644 --- a/doc/listbox.n +++ b/doc/listbox.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: listbox.n,v 1.4 1999/12/16 21:57:12 hobbs Exp $ +'\" RCS: @(#) $Id: listbox.n,v 1.5 1999/12/21 23:54:17 hobbs Exp $ '\" .so man.macros .TH listbox n 8.0 Tk "Tk Built-In Commands" @@ -215,12 +215,12 @@ element given by \fIindex\fR. If \fIindex\fR is specified as \fBend\fR then the new elements are added to the end of the list. Returns an empty string. .TP -\fIpathName \fBitemcget \fIindex \foption +\fIpathName \fBitemcget \fIindex option\fR Returns the current value of the item configuration option given by \fIoption\fR. \fIOption\fR may have any of the values accepted by the \fBlistbox itemconfigure\fR command. .TP -\fIpathName \fBitemconfigure \fIindex ?\fIoption\fR? ?\fIvalue? ?option value ...\fR? +\fIpathName \fBitemconfigure \fIindex\fR ?\fIoption\fR? ?\fIvalue\fR? ?\fIoption value ...\fR? Query or modify the configuration options of an item in the listbox. If no \fIoption\fR is specified, returns a list describing all of the available options for the item (see \fBTk_ConfigureInfo\fR for |