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 | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" | | | 1 2 3 4 5 6 7 8 9 10 | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" # LAST MODIFICATION: "Wed Sep 8 20:52:40 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> # $Id$ # --- # # tclreadline -- gnu readline for tcl # Copyright (C) 1999 Johannes Zellner # |
| ︙ | ︙ | |||
217 218 219 220 221 222 223 |
tclreadlineCompleter.tcl pkgIndex.tcl tclreadlineConfig.sh
@$(MKINSTALLDIRS) $(LIBRARY_INSTALL_DIR)
for f in \
tclreadlineInit.tcl \
tclreadlineSetup.tcl \
tclreadlineCompleter.tcl \
pkgIndex.tcl \
| | > | | 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 \
tclreadlineConfig.sh\
; do \
$(INSTALL_DATA) $f $(LIBRARY_INSTALL_DIR) \
; done
FORCE:
$(MANN_INSTALL_DIR)/$(MAN): FORCE
- $(INSTALL_DATA) $(srcdir)/$(MAN) $@ && chmod 644 $@
tclreadline.n.html: tclreadline.n
|
| ︙ | ︙ |
Modified tclreadline.c
from [f77717ef15]
to [97bafdb0ed].
1 2 3 4 |
/* ==================================================================
FILE: "/diska/home/joze/src/tclreadline/tclreadline.c"
| | | 1 2 3 4 5 6 7 8 9 10 11 12 |
/* ==================================================================
FILE: "/diska/home/joze/src/tclreadline/tclreadline.c"
LAST MODIFICATION: "Wed Sep 8 20:53:23 1999 (joze)"
(C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org>
$Id$
---
tclreadline -- gnu readline for tcl
Copyright (C) 1999 Johannes Zellner
|
| ︙ | ︙ | |||
334 335 336 337 338 339 340 341 342 343 344 345 346 347 |
TCL_DONT_WAIT
TCL_WINDOW_EVENTS
TCL_FILE_EVENTS
TCL_TIMER_EVENTS
TCL_IDLE_EVENTS
TCL_ALL_EVENTS
*/
}
void
TclReadlineReadHandler(ClientData clientData, int mask)
{
#if 0
fprintf(stderr, "(TclReadlineReadHandler) mask = %d\n", mask);
#endif
| > | 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
|
| ︙ | ︙ |