Overview
Comment: | Thu Dec 16 22:39:33 CET 1999 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
5ceb4bf9b1a64c4e6d3a2df0cd9f6100 |
User & Date: | johannes@zellner.org on 1999-12-16 22:11:00 |
Other Links: | manifest | tags |
Context
1999-12-17
| ||
12:19 | Fri Dec 17 13:19:24 CET 1999 check-in: 93501d5366 user: johannes@zellner.org tags: trunk | |
1999-12-16
| ||
22:11 | Thu Dec 16 22:39:33 CET 1999 check-in: 5ceb4bf9b1 user: johannes@zellner.org tags: trunk | |
21:53 | Thu Dec 16 22:22:08 CET 1999 check-in: 5d555b6f90 user: johannes@zellner.org tags: trunk | |
Changes
Added tclshrl.c version [9cd021378e].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 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 | /* ================================================================== FILE: "/home/joze/src/tclreadline/tclshrl.c" LAST MODIFICATION: "Thu Dec 16 21:51:19 1999 (joze)" (C) 1998, 1999 by Johannes Zellner, <johannes@zellner.org> $Id$ --- tclreadline -- gnu readline for tcl Copyright (C) 1999 Johannes Zellner This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. <johannes@zellner.org>, http://www.zellner.org/tclreadline/ ================================================================== */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include <tcl.h> #include <tclreadline.h> #if 0 #include <assert.h> #endif extern int Tclreadline_Init(Tcl_Interp *interp); extern int Tclreadline_SafeInit(Tcl_Interp *interp); int TclreadlineAppInit(Tcl_Interp* interp) { char file[0xff]; int status; #if 0 assert(Tcl_InitStubs(interp, TCL_VERSION, 0)); #endif if (TCL_ERROR == Tcl_Init(interp)) { return TCL_ERROR; } if (TCL_ERROR == Tclreadline_Init(interp)) { return TCL_ERROR; } Tcl_StaticPackage(interp, "tclreadline", Tclreadline_Init, Tclreadline_SafeInit); #if (TCL_MAJOR_VERSION == 7) && (TCL_MINOR_VERSION == 4) tcl_RcFileName = "~/.tclshrc"; #else Tcl_SetVar(interp, "tcl_rcFileName", "~/.tclshrc", TCL_GLOBAL_ONLY); #endif sprintf(file, "%s/tclreadlineInit.tcl", TCLRL_LIBRARY); if ((status = Tcl_EvalFile(interp, file))) { fprintf(stderr, "(TclreadlineAppInit) unable to eval %s\n", file); exit (1); } return TCL_OK; } int main(int argc, char *argv[]) { Tcl_Main(argc, argv, TclreadlineAppInit); return 0; } |