Overview
| Comment: | small fix in the completer so that it completes options (public variables) for itcl. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9e7c008b8ca543033e7c47da702436aa |
| User & Date: | johannes@zellner.org on 2000-07-01 14:23:17.000 |
| Other Links: | manifest | tags |
Context
|
2000-07-01
| ||
| 22:18 | 1. usable version after change to automake check-in: 30437b03ab user: johannes@zellner.org tags: trunk | |
| 14:23 | small fix in the completer so that it completes options (public variables) for itcl. check-in: 9e7c008b8c user: johannes@zellner.org tags: trunk | |
|
2000-03-25
| ||
| 20:59 | Sat Mar 25 21:58:26 CET 2000 check-in: 407e6d1b0a user: johannes@zellner.org tags: trunk | |
Changes
Modified configure.in
from [3dc2bfd8b1]
to [177d3bdd31].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | dnl -*- autoconf -*- dnl FILE: "/home/joze/src/tclreadline/configure.in" |
| ︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | AC_CONFIG_HEADER(config.h) AC_PREREQ(2.13) AC_REVISION($Revision$) AC_CONFIG_AUX_DIR(./aux) TCLREADLINE_MAJOR_VERSION=1 TCLREADLINE_MINOR_VERSION=2 |
| ︙ |
Modified tclreadlineCompleter.tcl
from [a07d7cee03]
to [e34a842808].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # -*- tclsh -*- # FILE: "/home/joze/src/tclreadline/tclreadlineCompleter.tcl" |
| ︙ | |||
490 491 492 493 494 495 496 497 | 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 | + - + + + + + + + + - + |
# We always use `configure' here,
# because cget will not return the
# option table.
#
if {[catch [list set option_table [eval ${cmd} configure]] msg]} {
return 0
}
set retval 0
foreach optline ${option_table} {
|
| ︙ |