View | Details | Raw Unified | Return to bug 22351
Collapse All | Expand All

(-)compile.c Fri Oct 27 16:10:39 2000 (-1 / +4 lines)
Lines 471-483 Link Here
471
               op = sp = text + size;
471
               op = sp = text + size;
472
               for (; *p; p++) {
472
               for (; *p; p++) {
473
                       if (*p == '\\') {
473
                       if (*p == '\\') {
474
                               p++;
474
                               if (*++p == '\0') {
475
                                       if (cu_fgets(lbuf, sizeof(lbuf), &more))
476
                                               p = lbuf;
477
                               }
475
                               if (strchr("123456789", *p) != NULL) {
478
                               if (strchr("123456789", *p) != NULL) {
476
                                       *sp++ = '\\';
479
                                       *sp++ = '\\';

Return to bug 22351