comparison mc-macro.c @ 647:fe23fe842b82

*** empty log message ***
author kono
date Fri, 17 Nov 2006 20:00:37 +0900
parents 4b4c6b1ea69a
children 234bc5f79a11
comparison
equal deleted inserted replaced
646:0d7baf338fc2 647:fe23fe842b82
424 if (*p == '#' && !in_comment && !in_quote) { 424 if (*p == '#' && !in_comment && !in_quote) {
425 // macro directive 425 // macro directive
426 chptr = p; 426 chptr = p;
427 if (macro_processing()) return; 427 if (macro_processing()) return;
428 } 428 }
429 if (c==EOF) break;
429 } while(!in_quote && (macro_if_skip || linebuf[0] == '#')); 430 } while(!in_quote && (macro_if_skip || linebuf[0] == '#'));
430 } 431 }
431 432
432 /* preprocessor directive */ 433 /* preprocessor directive */
433 434