Overview
Comment: | Makefile.in README configure.in sample.tclshrc tclreadline.n.in tclreadlineInit.tcl.in tclreadlineSetup.tcl.in Added Files: pkgIndex.tcl.in Removed Files: pkgIndex.tcl |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
63be52cad5e1e48d9aa26ff7b36a3129 |
User & Date: | johannes@zellner.org on 1999-08-20 13:40:53.000 |
Other Links: | manifest | tags |
Context
1999-08-20
| ||
13:41 | sources check-in: fba2a11ea2 user: johannes@zellner.org tags: trunk | |
13:40 | Makefile.in README configure.in sample.tclshrc tclreadline.n.in tclreadlineInit.tcl.in tclreadlineSetup.tcl.in Added Files: pkgIndex.tcl.in Removed Files: pkgIndex.tcl check-in: 63be52cad5 user: johannes@zellner.org tags: trunk | |
11:35 | config.guess config.sub install-sh mkinstalldirs tcltags vimtags check-in: 3aa896e85d user: johannes@zellner.org tags: trunk | |
Changes
Modified Makefile.in
from [2ce64798a5]
to [0257af5dc0].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | # -*- make -*- |
︙ | |||
102 103 104 105 106 107 108 109 110 111 112 113 114 115 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | + | # Tk used to let the configure script choose which program to use # for installing, but there are just too many different versions of # "install" around; better to use the install-sh script that comes # with the distribution, which is slower but guaranteed to work. INSTALL = $(TOP_DIR)/aux/install-sh -c # INSTALL = @INSTALL@ INSTALL_PROGRAM = ${INSTALL} INSTALL_DATA = ${INSTALL} -m 644 MKINSTALLDIRS = $(TOP_DIR)/aux/mkinstalldirs # The symbols below provide support for dynamic loading and shared # libraries. The values of the symbols are normally set by the # configure script. You shouldn't normally need to modify any of |
︙ |
Modified README
from [e9f79be895]
to [ae2b4b25fc].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + |
|
︙ | |||
29 30 31 32 33 34 35 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - + | 1. Introduction --------------- This directory contains the sources and documentation for tclreadline, which builds a connection between tcl and the gnu readline. |
︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 | - - | copy the sample.tclshrc to $HOME/.tclshrc. If you use another interpreter like wish, you should copy the file sample.tclshrc to $HOME/.wishrc (or whatever the manual page of your interpreter says.) If you have installed tclreadline properly, you are just ready to start: start your favorite interpreter. The tclreadlineSetup.tcl script does the rest. |
Modified configure.in
from [8c8e79267c]
to [2d822276ab].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | # -*- autoconf -*- |
︙ | |||
42 43 44 45 46 47 48 | 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 | - - + - - - + + - - + + + + - + | AC_PREREQ(2.13) AC_CONFIG_AUX_DIR(./aux) AC_CANONICAL_HOST |
︙ | |||
108 109 110 111 112 113 114 | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - + | # ----------------------------------------------------------------------- # Set up a new default --prefix. # ----------------------------------------------------------------------- |
︙ | |||
468 469 470 471 472 473 474 | 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 | - + | AC_SUBST(TCLREADLINE_LIB_DIR) AC_SUBST(TCLREADLINE_PKG_FILE) AC_SUBST(TCLREADLINE_PACKAGE_PATH) AC_SUBST(TCLREADLINE_LIBRARY) |
︙ |
Deleted pkgIndex.tcl version [cd9e5665c0].
Added pkgIndex.tcl.in version [62387bbed8].
Modified sample.tclshrc
from [693bb1ae82]
to [79de25f768].
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + - - - - + + + - - + + |
|
︙ |
Modified tclreadline.n.in
from [42771656fc]
to [09c544295b].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | .TH tclreadline n "@TCLREADLINE_VERSION@" "Johannes Zellner" .\" (C) 1999 by Johannes Zellner .\" FILE: "/diska/home/joze/src/tclreadline/tclreadline.n.in" |
︙ | |||
70 71 72 73 74 75 76 | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | - + | If you want to use \fBtclreadline\fP as a line interface for developing tcl scripts, you probably don't have to read this section. .PP The following list will give all commands, which are currently |
︙ |
Modified tclreadlineInit.tcl.in
from [49ecba8dbd]
to [5477ab3f3e].
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | #!/usr/local/bin/tclsh |
︙ | |||
43 44 45 46 47 48 49 | 43 44 45 46 47 48 49 50 51 52 53 | + + + + | if [catch {load @TCLREADLINE_LIBRARY@/@TCLREADLINE_LIB_FILE@} msg] { puts stderr $msg exit 2 } } tclreadline::Init source [file join [file dirname [info script]] tclreadlineSetup.tcl] |
Modified tclreadlineSetup.tcl.in
from [6a07e26e50]
to [5442833e91].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | #!/usr/local/bin/tclsh # FILE: "/diska/home/joze/src/tclreadline/tclreadlineSetup.tcl.in" |
︙ | |||
165 166 167 168 169 170 171 | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | + - + + | } } proc ::tclreadline::prompt1 {} { variable prompt_string global env if {[catch {set pwd [pwd]} tmp]} { |
︙ |