mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 23:08:40 +02:00
Make DEBUG command handle "f" flag.
This commit is contained in:
@@ -3049,7 +3049,7 @@ under program control. The format is:
|
|||||||
.PP
|
.PP
|
||||||
\fBDEBUG\fR [+\fIflagson\fR] [\-\fIflagsoff\fR]
|
\fBDEBUG\fR [+\fIflagson\fR] [\-\fIflagsoff\fR]
|
||||||
.PP
|
.PP
|
||||||
\fIFlagson\fR and \fIflagsoff\fR consist of strings of the characters "extvl"
|
\fIFlagson\fR and \fIflagsoff\fR consist of strings of the characters "extvlf"
|
||||||
that correspond to the debugging options discussed in the command-line
|
that correspond to the debugging options discussed in the command-line
|
||||||
options section. If preceded with a "+", the corresponding group of
|
options section. If preceded with a "+", the corresponding group of
|
||||||
debugging options is switched on. Otherwise, they are switched off.
|
debugging options is switched on. Otherwise, they are switched off.
|
||||||
|
|||||||
@@ -863,6 +863,11 @@ int DoDebug(ParsePtr p)
|
|||||||
else DebugFlag &= ~DB_PRTLINE;
|
else DebugFlag &= ~DB_PRTLINE;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'f':
|
||||||
|
case 'F':
|
||||||
|
if (val) DebugFlag |= DB_TRACE_FILES;
|
||||||
|
else DebugFlag &= ~DB_TRACE_FILES;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user