Overview
Comment: | * made tclreadline.h installing to ${prefix}/include |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ab9723d172050c4b16ad2a758fa2eba3 |
User & Date: | johannes@zellner.org on 2000-09-20 17:44:34 |
Other Links: | manifest | tags |
Context
2000-09-29
| ||
18:38 | Fri Sep 29 20:37:27 CEST 2000 check-in: 36440946cb user: johannes@zellner.org tags: trunk | |
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 | |
Changes
Modified ChangeLog from [16fdf7ccfd] to [9c619311ab].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 | + + + + | 2000-09-20 Johannes Zellner <johannes@zellner.org> * made tclreadline.h installing to ${prefix}/include 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 |
︙ |
Modified Makefile.am from [957707c080] to [69d8b6511b].
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 | - + + + | ## -*- automake -*- ## FILE: "/home/joze/src/tclreadline/Makefile.am" |
︙ |
Modified configure.in from [ed062b1398] to [c53d22f7a0].
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" |
︙ | |||
92 93 94 95 96 97 98 | 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | - + + + | # this is the default anyway: # AC_PREFIX_DEFAULT(/usr/local) if test "${prefix}" = "NONE"; then prefix=$TCL_PREFIX fi |
︙ |
Modified tclreadline.c from [a3df48af95] to [3bf4b4d3d5].
1 2 3 | 1 2 3 4 5 6 7 8 9 10 11 | - + | /* ================================================================== FILE: "/home/joze/src/tclreadline/tclreadline.c" |
︙ | |||
41 42 43 44 45 46 47 48 49 50 51 52 53 54 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | + + + | * We need it here to decide, if we should read more * characters from a macro. Dirty, but it should work. */ extern char* _rl_executing_macro; #endif #include "tclreadline.h" static const char* tclrl_library = TCLRL_LIBRARY; static const char* tclrl_version_str = TCLRL_VERSION_STR; static const char* tclrl_patchlevel_str = TCLRL_PATCHLEVEL_STR; #define MALLOC(size) Tcl_Alloc((int) size) #define FREE(ptr) if (ptr) { Tcl_Free((char*) ptr); ptr = 0; } enum { _CMD_SET = (1 << 0), _CMD_GET = (1 << 1) |
︙ | |||
78 79 80 81 82 83 84 | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | - - - - | static int TclReadlineInitialize(Tcl_Interp* interp, char* historyfile); static int blank_line(char* str); static char** TclReadlineCompletion(char* text, int start, int end); static char* TclReadline0generator(char* text, int state); static char* TclReadlineKnownCommands(char* text, int state, int mode); static int TclReadlineParse(char** args, int maxargs, char* buf); |
︙ | |||
567 568 569 570 571 572 573 | 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | - + - + - + - + - + | (char*) &tclrl_history_length, TCL_LINK_INT))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::library", (char*) &tclrl_library, TCL_LINK_STRING | TCL_LINK_READ_ONLY))) return status; if (TCL_OK != (status = Tcl_LinkVar(interp, "::tclreadline::version", |
︙ |
Modified tclreadline.h.in from [473c3d5ffb] to [e4c160602c].
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 34 35 36 37 38 39 40 | - + + + - + + - + - - - - + + + + + + + + + + + + + + + + + + | /* ================================================================== FILE: "/home/joze/src/tclreadline/tclreadline.h.in" |
Modified tclreadlineInit.tcl.in from [8b27a39294] to [fce5df23d1].
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 | - + - + | #!/usr/local/bin/tclsh # FILE: "/home/joze/src/tclreadline/tclreadlineInit.tcl.in" |
︙ |