This commit is contained in:
Vitor Santos Costa 2016-08-15 14:55:31 -05:00
parent eb54e3e052
commit f8b0cb2c2d

View File

@ -359,7 +359,6 @@ X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[],
break; break;
#ifdef DEBUG #ifdef DEBUG
case 'P': case 'P':
YAP_SetOutputMessage();
if (p[1] != '\0') { if (p[1] != '\0') {
while (p[1] != '\0') { while (p[1] != '\0') {
int ch = p[1]; int ch = p[1];
@ -367,7 +366,11 @@ X_API YAP_file_type_t YAP_parse_yap_arguments(int argc, char *argv[],
ch += ('a' - 'A'); ch += ('a' - 'A');
if (ch >= 'a' && ch <= 'z') if (ch >= 'a' && ch <= 'z')
GLOBAL_Option[ch - 96] = 1; GLOBAL_Option[ch - 96] = 1;
p++;
} }
} else {
YAP_SetOutputMessage();
} }
break; break;
#endif #endif