-
Notifications
You must be signed in to change notification settings - Fork 19
Upgrade TclX to Tcl9 #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
45f5f89
Upgrade TclX to Tcl9
rkhaldi 7997bbc
Fix most of incompatibilities (Implementation & tests) with Tcl9
rkhaldi b90e48c
re-add removed change from master
rkhaldi f5c3b8b
remove the added lsort (the glob result is machine specific and the r…
rkhaldi 014629f
remove Macros for deprecated api and replace the deprecated calls wit…
rkhaldi 027b441
Revert "remove Macros for deprecated api and replace the deprecated c…
rkhaldi aca772d
Remove deprecated and remove macro: TCL_PARSE_PART1
rkhaldi 87404d8
Fix more incompatibilities
rkhaldi d7c56c1
include signal test
rkhaldi f16786e
Fix bug in signal library which occurs only in relation with tcl9
rkhaldi 632819d
Replace not yet defined macro: TCL_AUTO_LENGTH in Tcl8.6. Travis ci s…
rkhaldi fde2e93
Fix all warnings
rkhaldi a44cbd5
Fix additional warnings
rkhaldi d16a5e7
Fix MacOs warnings
rkhaldi 7ea4a1e
Fix remaining warnings and undo the change of deprecated function: rr…
rkhaldi 801257b
Fix another warnings (MacOs)
rkhaldi b99a668
Update tests/fstat.test
ramikhaldi 342c09e
Update tests/fstat.test
ramikhaldi e105385
Update tests/chmod.test
ramikhaldi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,10 @@ typedef void *void_pt; | |
#define TCLX_CMDL_INTERACTIVE (1<<0) | ||
#define TCLX_CMDL_EXIT_ON_EOF (1<<1) | ||
|
||
#define CONST const | ||
ramikhaldi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
#define VOID void | ||
#define panic Tcl_Panic | ||
|
||
Comment on lines
+55
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It needs to build without these lines. They were not previously needed. If there are other changes necessary to make it work they need to be made elsewhere. |
||
/* | ||
* Application signal error handler. Called after normal signal processing, | ||
* when a signal results in an error. Its main purpose in life is to allow | ||
|
@@ -97,7 +101,7 @@ EXTERN void TclX_SplitWinCmdLine (int *argcPtr, char ***argvPtr); | |
/* | ||
* Exported utility functions. | ||
*/ | ||
EXTERN void TclX_AppendObjResult TCL_VARARGS_DEF(Tcl_Interp *, interpArg); | ||
EXTERN void TclX_AppendObjResult (Tcl_Interp *, ...); | ||
|
||
EXTERN char * TclX_DownShift (char *targetStr, CONST char *sourceStr); | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.