Overview
Comment: | changes for 8.1 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dfae39d1f30e7e7fce43655c59256469 |
User & Date: | johannes@zellner.org on 1999-05-08 14:22:49 |
Other Links: | manifest | tags |
Context
1999-05-10
| ||
11:10 | before initial relase check-in: 8e3e39bef5 user: johannes@zellner.org tags: trunk | |
1999-05-08
| ||
14:22 | changes for 8.1 check-in: dfae39d1f3 user: johannes@zellner.org tags: trunk | |
1999-03-01
| ||
12:38 | *** empty log message *** check-in: 701dc63beb user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in from [8b163bbc13] to [52046d456f].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | - - - - + + + - - - + + + - + - - - - + + + + - - + + - - + + - + - + - + - + - + - + - - - - + + + + | # -*- make -*- |
︙ | |||
127 128 129 130 131 132 133 | 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 | - - - - - + + + + + + + + | #---------------------------------------------------------------- # The information below is modified by the configure script when # Makefile is generated from Makefile.in. You shouldn't normally # modify any of this stuff by hand. #---------------------------------------------------------------- |
︙ | |||
182 183 184 185 186 187 188 | 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | - + | .SUFFIXES: .c .o .so .sl .tcl all: $(TCLREADLINE_LIB_FILE) pkgIndex.tcl @TCLREADLINE_LIB_FILE@: ${OBJS} rm -f $(TCLREADLINE_LIB_FILE) |
︙ | |||
210 211 212 213 214 215 216 | 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | - + | $(INSTALL_DATA) tclreadlineConfig.sh $(LIBRARY_INSTALL_DIR) FORCE: $(MANN_INSTALL_DIR)/$(MAN): FORCE - $(INSTALL_DATA) $(srcdir)/$(MAN) $@ && chmod 644 $@ |
︙ |
Modified README from [9b0fb9d8aa] to [e9f79be895].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - - - - + + + + - - + - |
|
︙ |
Added sample.tclshrc version [693bb1ae82].
|
Modified tclreadline.c from [83b24cf018] to [73a4a8f6a3].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | + - - - + + + - - - + + + + - - - + + + + - - - + + + | /* ================================================================== |
︙ | |||
72 73 74 75 76 77 78 | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | - - - - + - - - - - - - - - - - + + + + + + + + + + + | #define STRIPWHITE(ptr) \ do { \ STRIPLEFT (ptr); \ STRIPRIGHT (ptr); \ } while (0) |
︙ | |||
122 123 124 125 126 127 128 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | - | for (c = 0; c < argc; c++) fprintf (stderr, "argv[%d] = %s\n", c, argv[c]); return TCL_ERROR; } c = argv[1][0]; length = strlen(argv[1]); |
︙ | |||
226 227 228 229 230 231 232 | 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | - - | int Tclreadline_SafeInit (Tcl_Interp *interp) { return (Tclreadline_Init (interp)); } int Tclreadline_Init (Tcl_Interp *interp) { |
︙ | |||
416 417 418 419 420 421 422 | 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 | - - - - - - - - | */ while ((*buf == ' ') || (*buf == '\t') || (*buf == '\n')) *buf++ = '\0'; if (!(*buf)) /* don't count the terminating NULL */ break; |
Modified tclreadline.h.in from [9edfb6a933] to [a6316a5a56].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - - - + + + - - - + + | /* ================================================================== |
Modified tclreadline.n.in from [9557ae4fe6] to [7f71db01a7].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | + - - - + + + - - + - | .TH tclreadline n "@TCLREADLINE_VERSION@" "Johannes Zellner" .\" (C) 1999 by Johannes Zellner |
︙ | |||
190 191 192 193 194 195 196 | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | - + - + | .PP The official \fBtclreadline\fP web site at: .PP .RS 4 |
Modified tclreadlineConfig.sh.in from [6ae67959cd] to [b0b13d39ee].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - - - - - + + + + - - - + + |
|
︙ |
Modified tclreadlineInit.tcl.in from [bd7543348e] to [49ecba8dbd].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | - - - - + + + - - - + + - - | #!/usr/local/bin/tclsh |
Modified tclreadlineSetup.tcl.in from [b4f2d71b1d] to [e96ff9502d].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | - - - - + + + - - - + + | #!/usr/local/bin/tclsh |
︙ |