Tcl Source Code

Check-in [d6204416c3]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Tcl_Value is now a synonym for Tcl_Obj !
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | novem
Files: files | file ages | folders
SHA1: d6204416c376e4d512adadebb94b5ae62e2acb1b
User & Date: dgp 2012-11-16 17:57:38
Context
2012-11-16
19:17
Burn the octal bridges. We're not goin' back. check-in: f1954e7f4d user: dgp tags: novem
17:57
Tcl_Value is now a synonym for Tcl_Obj ! check-in: d6204416c3 user: dgp tags: novem
17:52
Remove pre-8.5 interface for custom expr functions. check-in: d0406260f8 user: dgp tags: novem
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tcl.h.

614
615
616
617
618
619
620


621
622
623
624
625
626
627

/*
 * Forward declaration of Tcl_Obj to prevent an error when the forward
 * reference to Tcl_Obj is encountered in the function types declared below.
 */

struct Tcl_Obj;



/*
 *----------------------------------------------------------------------------
 * Function types defined by Tcl:
 */

typedef int (Tcl_AppInitProc) (Tcl_Interp *interp);







>
>







614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629

/*
 * Forward declaration of Tcl_Obj to prevent an error when the forward
 * reference to Tcl_Obj is encountered in the function types declared below.
 */

struct Tcl_Obj;

typedef struct Tcl_Obj Tcl_Value;

/*
 *----------------------------------------------------------------------------
 * Function types defined by Tcl:
 */

typedef int (Tcl_AppInitProc) (Tcl_Interp *interp);