1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* ==================================================================
FILE: wishrl.c
$Id$
---
tclreadline -- gnu readline for tcl
http://www.zellner.org/tclreadline/
Copyright (c) 1998 - 2014, Johannes Zellner <johannes@zellner.org>
This software is copyright under the BSD license.
================================================================== */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <tcl.h>
#include <tk.h>
#include <tclreadline.h>
extern int Tclreadline_Init(Tcl_Interp *interp);
extern int Tclreadline_SafeInit(Tcl_Interp *interp);
|
|
|
|
|
|
|
|
|
|
|
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* ================================================================== *
* FILE: wishrl.c
* $Id$
* ---
* tclreadline -- gnu readline for tcl
* http://www.zellner.org/tclreadline/
* Copyright (c) 1998 - 2014, Johannes Zellner <johannes@zellner.org>
* This software is copyright under the BSD license.
* ================================================================== */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h>
#include <tcl.h>
#include <tk.h>
#include <tclreadline.h>
extern int Tclreadline_Init(Tcl_Interp *interp);
extern int Tclreadline_SafeInit(Tcl_Interp *interp);
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
tcl_RcFileName = "~/.wishrc";
#else
Tcl_SetVar(interp, "tcl_rcFileName", "~/.wishrc", 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[])
{
Tk_Main(argc, argv, TclreadlineAppInit);
return 0;
}
|
|
|
|
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
tcl_RcFileName = "~/.wishrc";
#else
Tcl_SetVar(interp, "tcl_rcFileName", "~/.wishrc", 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 (EXIT_FAILURE);
}
return TCL_OK;
}
int
main(int argc, char *argv[])
{
Tk_Main(argc, argv, TclreadlineAppInit);
return EXIT_SUCCESS;
}
|