1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
|
* checking during this pass, since we have already parsed the string
* once.
*/
arg = 3;
format = TclGetString(objv[2]);
cursor = buffer;
maxPos = cursor;
while (*format != 0) {
flags = 0;
if (!GetFormatSpec(&format, &cmd, &count, &flags)) {
break;
}
if ((count == 0) && (cmd != '@')) {
if (cmd != 'x') {
|
|
|
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
|
* checking during this pass, since we have already parsed the string
* once.
*/
arg = 3;
format = TclGetString(objv[2]);
cursor = buffer;
maxPos = cursor + originalLength;
while (*format != 0) {
flags = 0;
if (!GetFormatSpec(&format, &cmd, &count, &flags)) {
break;
}
if ((count == 0) && (cmd != '@')) {
if (cmd != 'x') {
|