Skip to content

Commit 677d6a7

Browse files
committed
the final edits were not saved, so here they are
1 parent 251d2b5 commit 677d6a7

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/mminou.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ vstring_def(g_printString);
4646
long g_commandFileNestingLevel = 0;
4747
FILE *g_commandFilePtr[MAX_COMMAND_FILE_NESTING + 1];
4848
vstring g_commandFileName[MAX_COMMAND_FILE_NESTING + 1];
49+
/*!
50+
* \var flag g_commandFileSilent[]
51+
* a 1 for a particular \ref g_commandFileNestingLevel suppresses output for
52+
* that submit nesting level. The value for the interactive level
53+
* (\ref g_commandFileNestingLevel == 0) is ignored.
54+
*/
4955
flag g_commandFileSilent[MAX_COMMAND_FILE_NESTING + 1];
5056
flag g_commandFileSilentFlag = 0; /* For SUBMIT ... /SILENT */
5157

src/mmvstr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ temp_vstring right(const char *sin, long n);
457457
/*!
458458
* \fn temp_vstring edit(const char *sin, long control)
459459
* perform a combination of transformations on \p sin based on the set bits in
460-
* \p control.
460+
* \p control. This is an ASCII based transformation.
461461
* Bit Effect
462462
* 1 Clear parity bits
463463
* 2 Discard all spaces and tabs

0 commit comments

Comments
 (0)