Comitting file that was missing in rev 5101

This commit is contained in:
Thomas Schmitt 2013-07-02 12:37:35 +00:00
parent 7ae6b24934
commit c4d11a3905
2 changed files with 12 additions and 8 deletions

View File

@ -3695,6 +3695,8 @@ ex:;
} }
/* @param flag bit0= do not issue prompt messages on info channel
*/
int Xorriso_msg_op_parse_bulk(struct XorrisO *xorriso, int Xorriso_msg_op_parse_bulk(struct XorrisO *xorriso,
char *prefix, char *separators, char *prefix, char *separators,
int max_words, int pflag, int bulk_lines, int max_words, int pflag, int bulk_lines,
@ -3705,16 +3707,18 @@ int Xorriso_msg_op_parse_bulk(struct XorrisO *xorriso,
struct Xorriso_lsT *input_list= NULL, *input_end= NULL, *new_lst, *lst; struct Xorriso_lsT *input_list= NULL, *input_end= NULL, *new_lst, *lst;
char *pline= NULL; char *pline= NULL;
sprintf(xorriso->info_text, if(!(flag & 1)) {
sprintf(xorriso->info_text,
"Enter %d groups of lines. Each group begins by a line which tells the\n", "Enter %d groups of lines. Each group begins by a line which tells the\n",
bulk_lines); bulk_lines);
Xorriso_info(xorriso, 0); Xorriso_info(xorriso, 0);
sprintf(xorriso->info_text, sprintf(xorriso->info_text,
"number of following lines in the group. Then come the announced lines\n"); "number of following lines in the group. Then come the announced lines\n");
Xorriso_info(xorriso, 0); Xorriso_info(xorriso, 0);
sprintf(xorriso->info_text, sprintf(xorriso->info_text,
"Do this blindly. No further prompt will appear. Best be a computer.\n"); "Do this blindly. No further prompt will appear. Best be a computer.\n");
Xorriso_info(xorriso, 0); Xorriso_info(xorriso, 0);
}
Xorriso_alloc_meM(pline, char, SfileadrL); Xorriso_alloc_meM(pline, char, SfileadrL);

View File

@ -1 +1 @@
#define Xorriso_timestamP "2013.07.02.092827" #define Xorriso_timestamP "2013.07.02.123642"