summaryrefslogtreecommitdiffstats
path: root/generic/tclParse.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.6. Also reduce tclCharTypeTable[] to 256 entries, as this table is ↵jan.nijtmans2019-01-261-1/+1
|\ | | | | | | | | always addressed with unsigned chars now. Eliminate some useless end-of-line spacing that slipped in.
| * Replace isspace() -> TclIsSpaceProc() _everywhere_. jan.nijtmans2019-01-261-1/+1
|/ | | Change TclIsSpaceProc() and TclIsBareWord so it works with both signed and unsigned characters. Actually, this is not a signature change, as "char" arguments are enlarged to "int" by the C-compiler anyway.
* MODULE_SCOPE symbol names are suppoted to start with 'tcl' (data) or 'Tcl' ↵jan.nijtmans2012-12-041-2/+2
| | | | (code)
* Refactor TclScanElement() part of list parsing to take advantage of tablesdgp2012-03-071-0/+17
constructed for the task of script parsing. Ought to speed generation of string representation of lists, though the effect is likely only noticeable on long lists made up primarily of simple elements (not needing quoting).