Overview
| Comment: | Makefile.in tclreadline.c |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
57754b17000e968291225f42240c646f |
| User & Date: | johannes@zellner.org on 1999-09-08 18:53:32.000 |
| Other Links: | manifest | tags |
Context
|
1999-09-08
| ||
| 18:55 | Makefile.in check-in: c74c417b53 user: johannes@zellner.org tags: trunk | |
| 18:53 | Makefile.in tclreadline.c check-in: 57754b1700 user: johannes@zellner.org tags: trunk | |
| 16:35 | Modified Files: Makefile.in configure.in sample.tclshrc tclreadline.c tclreadlineInit.tcl.in tclreadlineSetup.tcl.in Added Files: tclreadlineCompleter.tcl check-in: ad8b77b1ed user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in
from [5221fa0888]
to [bba2971f55].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" |
| ︙ | |||
217 218 219 220 221 222 223 | 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | - + + - + |
tclreadlineCompleter.tcl pkgIndex.tcl tclreadlineConfig.sh
@$(MKINSTALLDIRS) $(LIBRARY_INSTALL_DIR)
for f in \
tclreadlineInit.tcl \
tclreadlineSetup.tcl \
tclreadlineCompleter.tcl \
pkgIndex.tcl \
|
| ︙ |
Modified tclreadline.c
from [f77717ef15]
to [97bafdb0ed].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + |
/* ==================================================================
FILE: "/diska/home/joze/src/tclreadline/tclreadline.c"
|
| ︙ | |||
334 335 336 337 338 339 340 341 342 343 344 345 346 347 | 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 | + |
TCL_DONT_WAIT
TCL_WINDOW_EVENTS
TCL_FILE_EVENTS
TCL_TIMER_EVENTS
TCL_IDLE_EVENTS
TCL_ALL_EVENTS
*/
return TCL_OK;
}
void
TclReadlineReadHandler(ClientData clientData, int mask)
{
#if 0
fprintf(stderr, "(TclReadlineReadHandler) mask = %d\n", mask);
#endif
|
| ︙ |