Check-in [e79b9877a8]
Not logged in
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: e79b9877a887684ceb5e145cb47aa0bf36eab56f
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
9
10
11
12
13
14
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

+
+
+
+
+
+
+
+
+
+
+
+
+














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>

     * Makefile.am: included EXTRA_DIST so that it compiles from `dist'

2000-07-01  Johannes Zellner <johannes@zellner.org>

     * switched to automake
     * small fix so that itcl config switches are correctly completed.

Modified configure.in from [559b0281b5] to [ed062b1398].

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
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"
dnl LAST MODIFICATION: "Don, 27 Jul 2000 15:10:24 +0200 (joze)"
dnl LAST MODIFICATION: "Son, 27 Aug 2000 16:10:18 +0200 (joze)"
dnl (C) 1998 - 2000 by Johannes Zellner, <johannes@zellner.org>
dnl $Id$
dnl ---
dnl tclreadline -- gnu readline for tcl
dnl http://www.zellner.org/tclreadline/
dnl Copyright (c) 1998 - 2000, Johannes Zellner <johannes@zellner.org>
dnl This software is copyright under the BSD license.

AC_INIT(tclreadline.c)
AM_CONFIG_HEADER(config.h)
AC_PREREQ(2.13)
AC_REVISION($Revision$)
AC_CONFIG_AUX_DIR(./aux)

MAJOR=2
MINOR=0
PATCHLEVEL=2
PATCHLEVEL=3
VERSION=$MAJOR.$MINOR
PATCHLEVEL_STR=$VERSION.$PATCHLEVEL

AC_SUBST(MAJOR)
AC_SUBST(MINOR)
AC_SUBST(PATCHLEVEL)
AC_SUBST(VERSION)

Modified tclreadline.c from [bd4dbca0d1] to [a3df48af95].

1
2
3
4

5
6
7
8
9
10
11
1
2
3

4
5
6
7
8
9
10
11



-
+








 /* ==================================================================
    FILE: "/home/joze/src/tclreadline/tclreadline.c"
    LAST MODIFICATION: "Sat, 08 Jul 2000 21:25:15 +0200 (joze)"
    LAST MODIFICATION: "Son, 27 Aug 2000 16:11:02 +0200 (joze)"
    (C) 1998 - 2000 by Johannes Zellner, <johannes@zellner.org>
    $Id$
    ---
    tclreadline -- gnu readline for tcl
    http://www.zellner.org/tclreadline/
    Copyright (c) 1998 - 2000, Johannes Zellner <johannes@zellner.org>
    This software is copyright under the BSD license.
197
198
199
200
201
202
203
204

205
206
207
208
209
210
211
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[])
{
    int i, obj_idx, status;
    int obj_idx, status;

    static char *subCmds[] = {
	"read", "initialize", "write", "add", "complete",
	"customcompleter", "builtincompleter", "eofchar",
	"reset-terminal", "bell", "text", "update",
	(char *) NULL
    };