CWBillow Jul 345 1 2013-10-06 #1 What are the equivalent push/pop commands in tcc / tcmd -- the means to mark a place and return after commands are performed? I cannot seem to find them in tcc. Regards, Chuck Billow
What are the equivalent push/pop commands in tcc / tcmd -- the means to mark a place and return after commands are performed? I cannot seem to find them in tcc. Regards, Chuck Billow
S Steve Fabian May 3,515 5 2013-10-06 #2 In TCC, PUSHD and POPD. Same in 4NT, TCMD32, and even in 4DOS. TCMD does not have a command line through which commands can be passed to it.
In TCC, PUSHD and POPD. Same in 4NT, TCMD32, and even in 4DOS. TCMD does not have a command line through which commands can be passed to it.
S Steve Fabian May 3,515 5 2013-10-06 #3 OH yes, also we have SETLOCAL/ENDLOCAL, which save and restore much more: the default disk drive and directory ·the environment, ·the alias list ·the user-defined function list (not in TCC/LE) ·the special character set (command separator, escape character, parameter character, decimal separator, and thousands separator) ·the SETDOS /X setting
OH yes, also we have SETLOCAL/ENDLOCAL, which save and restore much more: the default disk drive and directory ·the environment, ·the alias list ·the user-defined function list (not in TCC/LE) ·the special character set (command separator, escape character, parameter character, decimal separator, and thousands separator) ·the SETDOS /X setting
CWBillow Jul 345 1 2013-10-06 #4 Thanks on both counts, Steve. I'll have to take a closer look! Regards, Chuck