Overview
Comment: | * added Mark to AUTHORS :) * updated the ChangeLog according to Marks mail * removed an unused i from the obj command in tclreadline.c * increased the patchlevel |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
e79b9877a887684ceb5e145cb47aa0bf |
User & Date: | johannes@zellner.org on 2000-08-27 14:14:37 |
Other Links: | manifest | tags |
Context
2000-09-20
| ||
17:44 | * made tclreadline.h installing to ${prefix}/include check-in: ab9723d172 user: johannes@zellner.org tags: trunk | |
2000-08-27
| ||
14:14 | * added Mark to AUTHORS :) * updated the ChangeLog according to Marks mail * removed an unused i from the obj command in tclreadline.c * increased the patchlevel check-in: e79b9877a8 user: johannes@zellner.org tags: trunk | |
13:25 | Updated docs for text and update commands. check-in: 4f73d8af60 user: mpatton@jhu.edu tags: trunk | |
Changes
Modified AUTHORS from [9d8fee133e] to [3ae7bf63da].
1 | 1 2 | + | Johannes Zellner <johannes@zellner.org> http://www.zellner.org/ Mark Patton <mpatton@jhu.edu> |
Modified ChangeLog from [048d296ceb] to [16fdf7ccfd].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | + + + + + + + + + + + + + | 2000-08-27 Johannes Zellner <johannes@zellner.org> * added Mark to AUTHORS :) 2000-08-27 Mark Patton <mpatton@jhu.edu> * converted tclreadline::readline to be an object command. This was the simplest way to fix the Tcl_Obj mem leak. * added the command readline text and readline update that retrieve the current input and redraw it respecively. 2000-07-27 Johannes Zellner <johannes@zellner.org> * configure.in: changed a == to = in a sh test (reported by "Daniel O'Connor" <darius@dons.net.au>) 2000-07-03 Johannes Zellner <johannes@zellner.org> |
︙ |
Modified configure.in from [559b0281b5] to [ed062b1398].
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 | - + - + | dnl -*- autoconf -*- dnl FILE: "/home/joze/src/tclreadline/configure.in" |
︙ |
Modified tclreadline.c from [bd4dbca0d1] to [a3df48af95].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | /* ================================================================== FILE: "/home/joze/src/tclreadline/tclreadline.c" |
︙ | |||
197 198 199 200 201 202 203 | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | - + | result_c = strdup(Tcl_DStringValue(&result)); return result_c; } static int TclReadlineCmd(ClientData clientData, Tcl_Interp *interp, int objc, Tcl_Obj *CONST objv[]) { |
︙ |