merged 765

This commit is contained in:
Ed Hartnett 2018-01-20 06:04:34 -07:00
commit ce7041d9a6

View File

@ -911,7 +911,8 @@ collectprefixparams(char* text, char** nextp)
for(;;) {
char* p; char* q;
/* by construction, here we are at an LBRACKET: compress it out */
for(p=sp,q=sp+1;(*p++=*q++););
for(p=sp,q=sp+1;(*p++=*q++);)
;
/* locate the next RRACKET */
ep = nclocate(sp,RBRACKETSTR);
if(ep == NULL) break;/* we are done */