summaryrefslogtreecommitdiffstats
path: root/generic/tclScan.c
Commit message (Collapse)AuthorAgeFilesLines
* * unix/mkLinks:stanton1999-02-101-3/+2
| | | | | | | | | | * doc/SetVar.3: * generic/tcl.h: * generic/tclVar.c: Restored Tcl_ObjGetVar2 and Tcl_ObjSetVar2 from 8.0. Renamed Tcl_Get/SetObjVar2 to Tcl_GetVar2Ex and Tcl_SetVar2Ex. * Merged 8.0.5b2 patches
* * tclScan.c: moved "scan" implementation out of tclCmdMZ.c andstanton1998-11-181-15/+40
| | | | | | | | | added Unicode support. This required a complete reimplementation of the command to avoid using scanf(), which isn't Unicode aware. Two new features were added in the process: %n to return the current number of characters consumed, and XPG3-style %n$ argument order specifiers similar to those provided by the "format" command. [Bug: 833]
* moved scan implementation into tclScan.cstanton1998-11-161-0/+1008
changed scan to support unicode