Overview
Comment: | Modified Files: Makefile.in configure.in sample.tclshrc tclreadline.c tclreadlineInit.tcl.in tclreadlineSetup.tcl.in Added Files: tclreadlineCompleter.tcl |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ad8b77b1eda9f2d235826a2748f9622a |
User & Date: | johannes@zellner.org on 1999-09-08 16:35:40 |
Other Links: | manifest | tags |
Context
1999-09-08
| ||
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 | |
1999-09-06
| ||
12:08 | tclreadlineSetup.tcl.in check-in: c4f34cdde5 user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in from [034eadb447] to [5221fa0888].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" |
︙ | |||
153 154 155 156 157 158 159 | 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | - + - + + | CC = @CC@ CC_SWITCHES = $(CFLAGS) $(SHLIB_CFLAGS) -I$(TOP_DIR) \ -I$(TCL_INCLUDE_DIR) -I$(READLINE_INCLUDE_DIR) OBJS = tclreadline.o CSRCS = $(TOP_DIR)/tclreadline.c |
︙ | |||
208 209 210 211 212 213 214 | 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | - - + + + - - - - + + + + + + + | @echo "Installing $(TCLREADLINE_LIB_FILE)" @$(INSTALL_DATA) $(TCLREADLINE_LIB_FILE) \ $(LIBRARY_INSTALL_DIR)/$(TCLREADLINE_LIB_FILE) @(cd $(LIBRARY_INSTALL_DIR); $(RANLIB) $(TCLREADLINE_LIB_FILE)) chmod 555 $(LIBRARY_INSTALL_DIR)/$(TCLREADLINE_LIB_FILE) |
︙ |
Modified configure.in from [b31af07b35] to [0fd9b9796f].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # -*- autoconf -*- # FILE: "/diska/home/joze/src/tclreadline/configure.in" |
︙ | |||
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | + + + - - | break fi done if test -z "$TCL_LIB_DIR"; then AC_MSG_ERROR(Can't find Tcl libraries. Use --with-tcl to specify the directory containing tclConfig.sh on your system.) else . $TCL_LIB_DIR/tclConfig.sh AC_MSG_RESULT($TCL_LIB_DIR/tclConfig.sh) AC_MSG_CHECKING([for your tcl version]) AC_MSG_RESULT([$TCL_VERSION, patchlevel $TCL_PATCH_LEVEL]) fi #-------------------------------------------------------------------- # Read in configuration information generated by Tcl for shared # libraries, and arrange for it to be substituted into our # Makefile. #-------------------------------------------------------------------- |
︙ |
Modified sample.tclshrc from [26541f9376] to [f07a36eb8e].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | #!/bin/sh |
︙ | |||
45 46 47 48 49 50 51 52 53 54 55 56 | 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | + + + + | # # namespace import tclreadline::Print # store maximal this much lines in the history file # set tclreadline::historyLength 200 # disable tclreadline's script completer # ::tclreadline::readline customcompleter "" # go to tclrealdine's main loop. # tclreadline::Loop } |
Modified tclreadline.c from [26244269ef] to [f77717ef15].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | /* ================================================================== FILE: "/diska/home/joze/src/tclreadline/tclreadline.c" |
︙ | |||
283 284 285 286 287 288 289 | 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | - + | goto BAD_COMMAND; if (3 == argc) { if (tclrl_custom_completer) FREE(tclrl_custom_completer); if (!blank_line(argv[2])) tclrl_custom_completer = stripwhite(strdup(argv[2])); } |
︙ |
Added tclreadlineCompleter.tcl version [304494b477].