Deleted Added
full compact
eval.c (7004) eval.c (7896)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ozan Yigit at York University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 342 unchanged lines hidden (view full) ---

351 */
352 m4wraps = (argc > 2) ? xstrdup(argv[2]) : null;
353 break;
354
355 case EXITTYPE:
356 /*
357 * doexit - immediate exit from m4.
358 */
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Ozan Yigit at York University.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 342 unchanged lines hidden (view full) ---

351 */
352 m4wraps = (argc > 2) ? xstrdup(argv[2]) : null;
353 break;
354
355 case EXITTYPE:
356 /*
357 * doexit - immediate exit from m4.
358 */
359 killdiv();
359 exit((argc > 2) ? atoi(argv[2]) : 0);
360 break;
361
362 case DEFNTYPE:
363 if (argc > 2)
364 for (n = 2; n < argc; n++)
365 dodefn(argv[n]);
366 break;

--- 426 unchanged lines hidden ---
360 exit((argc > 2) ? atoi(argv[2]) : 0);
361 break;
362
363 case DEFNTYPE:
364 if (argc > 2)
365 for (n = 2; n < argc; n++)
366 dodefn(argv[n]);
367 break;

--- 426 unchanged lines hidden ---