home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / text / editors / dme_441 / src / command.c < prev    next >
C/C++ Source or Header  |  1991-01-24  |  20KB  |  787 lines

  1.  
  2. /*
  3.  * COMMAND.C
  4.  *
  5.  *    (C)Copyright 1987 by Matthew Dillon, All Rights Reserved
  6.  *
  7.  * )c             single character (typing)
  8.  * 'c                single character (typing)
  9.  * `string'          string of characters w/ embedded `' allowed!
  10.  * (string)             same thing w/ embedded () allowed!
  11.  * \c             override
  12.  *
  13.  * name arg arg      command name. The arguments are interpreted as strings
  14.  *             for the command.
  15.  *
  16.  * $scanf         macro insert scanf'd variable
  17.  * $filename         macro insert current file name
  18.  *
  19.  * Any string arguments not part of a command are considered to be typed
  20.  * text.
  21.  */
  22.  
  23. #include "defs.h"
  24.  
  25. Prototype void init_command (void);
  26. Prototype int do_command (char *);
  27. Prototype void do_null (void);
  28. Prototype void do_source (void);
  29. Prototype void do_quit (void);
  30. Prototype void do_execute (void);
  31. Prototype void do_repeat (void);
  32. Prototype char *breakout (char **, char *, char **);
  33.  
  34.  
  35. typedef struct Process PROC;
  36.  
  37. #if AREXX
  38. extern int foundcmd;       /* control for implicit ARexx macro invocation   */
  39. extern int cmderr;       /* global command error flag for do_rexx()'s use */
  40. #endif
  41.  
  42. #define CF_COK    1   /*    Can be executed while in command line mode    */
  43. #define CF_PAR    2   /*    ESCIMM special flag.. save rest of command line */
  44.             /*    so it can be executed after user entry        */
  45.  
  46. #define CF_ICO    4   /*    OK to execute if iconified, else uniconify first*/
  47.  
  48. #define BTOCP(val, type)    ((type)((long)val << 2))
  49.  
  50. typedef void (*FPTR) ARGS((long));
  51.  
  52. typedef struct {
  53.     const char *name;     /* command name       */
  54.     ubyte args;
  55.     ubyte flags;
  56.     void (*func) ARGS((long));  /* function           */
  57. } COMM;
  58.  
  59. /*============================================================================*/
  60.  
  61. /*
  62.  *  WLEFT/WRIGHT will check command line mode themselves, and thus can
  63.  *  be marked flags=1 even though they can change the line number.
  64.  *
  65.  *  No more than 255 commands may exist unless you change the type of hindex[]
  66.  *
  67.  *  Command names MUST be sorted by their first character
  68.  */
  69.  
  70. static unsigned char hindex[26];    /*    alpha hash into table    */
  71.  
  72.     /*      args flags    */
  73.  
  74. static const COMM Comm[] = {
  75. #ifndef NO_DO2
  76.     "addpath",       1, CF_COK, (FPTR)do_addpath,
  77. #endif
  78.     "arpinsfile",    0,      0, (FPTR)do_arpinsfile,
  79.     "arpload",       0,      0, (FPTR)do_arpload,
  80.     "arpsave",       0,      0, (FPTR)do_arpsave,
  81.     "back",          0, CF_COK, (FPTR)do_bs,
  82.     "backtab",       0, CF_COK, (FPTR)do_backtab,
  83.     "bcopy",         0,      0, (FPTR)do_bcopy,
  84.     "bdelete",       0,      0, (FPTR)do_bdelete,
  85.     "bgpen",         1,      0, (FPTR)do_bgpen,
  86.     "block",         0,      0, (FPTR)do_block,    /* checks com name for mode */
  87.     "bmove",         0,      0, (FPTR)do_bmove,
  88.     "bottom",        0,      0, (FPTR)do_bottom,
  89.     "bs",            0, CF_COK, (FPTR)do_bs,
  90.     "bsave",         1, CF_COK, (FPTR)do_bsave,
  91.     "bsource",       0,      0, (FPTR)do_bsource,
  92.     "cd",            1, CF_COK, (FPTR)do_cd,
  93.     "chfilename",    1,      0, (FPTR)do_chfilename,
  94.     "col",           1, CF_COK, (FPTR)do_col,
  95. #ifndef NO_DO_CTAGS
  96.     "ctags",         0, CF_ICO, (FPTR)do_ctags,
  97. #endif
  98.     "del",           0, CF_COK, (FPTR)do_del,
  99.     "deline",        0,      0, (FPTR)do_deline,
  100.     "down",          0,      0, (FPTR)do_down,
  101.     "downadd",       0,      0, (FPTR)do_downadd,
  102.     "esc",           0, CF_COK, (FPTR)do_esc,
  103.     "escimm",        1, CF_PAR, (FPTR)do_esc,
  104.     "execute",       1, CF_ICO, (FPTR)do_execute,
  105.     "fgpen",         1,      0, (FPTR)do_fgpen,
  106.     "find",          1,      0, (FPTR)do_find,     /* checks com name for mode */
  107.     "findr",         2,      0, (FPTR)do_findr,    /* checks com name for mode */
  108.     "findstr",       1, CF_COK, (FPTR)do_findstr,  /* checks com name for mode */
  109.     "first",         0, CF_COK, (FPTR)do_firstcolumn,
  110.     "firstnb",       0, CF_COK, (FPTR)do_firstnb,
  111.     "goto",          1,      0, (FPTR)do_goto,
  112.     "hgpen",         1,      0, (FPTR)do_hgpen,
  113.     "iconify",       0, CF_ICO, (FPTR)do_iconify,
  114.     "if",            2, CF_COK, (FPTR)do_if,
  115.     "ifelse",        3, CF_COK, (FPTR)do_if,
  116.     "ignorecase",    1, CF_COK, (FPTR)do_ignorecase,
  117.     "insertmode",    1, CF_COK, (FPTR)do_insertmode,
  118.     "insfile",       1,      0, (FPTR)do_edit,
  119.     "insline",       0,      0, (FPTR)do_insline,
  120.     "join",          0,      0, (FPTR)do_join,
  121.     "justify",       1,      0, (FPTR)do_justify,
  122.     "last",          0, CF_COK, (FPTR)do_lastcolumn,
  123.     "left",          0, CF_COK, (FPTR)do_left,
  124.     /*
  125.     "lrow",          1, CF_COK, (FPTR)do_lrow,
  126.     */
  127.     "map",           2, CF_COK, (FPTR)do_map,
  128.     "margin",        1, CF_COK, (FPTR)do_margin,
  129.     "menuon",        0,      0, (FPTR)do_menuon,
  130.     "menuoff",       0,      0, (FPTR)do_menuoff,
  131.     "menuadd",       3,      0, (FPTR)do_menuadd,
  132.     "menudel",       2,      0, (FPTR)do_menudel,
  133.     "menudelhdr",    1,      0, (FPTR)do_menudelhdr,
  134.     "menuclear",     0,      0, (FPTR)do_menuclear,
  135.     "modified",      1,      0, (FPTR)do_modified,
  136.     "newfile",       1,      0, (FPTR)do_edit,     /* checks com name for mode */
  137.     "newwindow",     0, CF_ICO, (FPTR)do_newwindow,
  138.     "next",          0,      0, (FPTR)do_find,
  139.     "nextr",         0,      0, (FPTR)do_findr,
  140.     "null",          0, CF_COK, (FPTR)do_null,
  141.     "openwindow",    1, CF_ICO, (FPTR)do_openwindow,
  142.     "pagedown",      0,      0, (FPTR)do_page,
  143.     "pageset",       1,      0, (FPTR)do_page,
  144.     "pageup",        0,      0, (FPTR)do_page,
  145.     "ping",          1, CF_ICO, (FPTR)do_ping,
  146.     "pong",          1,      0, (FPTR)do_pong,
  147.     "prev",          0,      0, (FPTR)do_find,
  148.     "prevr",         0,      0, (FPTR)do_findr,
  149.     "popmark",       0,      0, (FPTR)do_popmark,
  150.     "purgemark",     0,      0, (FPTR)do_purgemark,
  151.     "pushmark",      0,      0, (FPTR)do_pushmark,
  152.     "quit",          0, CF_ICO, (FPTR)do_quit,
  153.     "recall",        0, CF_COK, (FPTR)do_recall,
  154. #ifndef NO_DO_REF
  155.     "ref",           0,      0, (FPTR)do_refs,
  156. #endif
  157.     "reformat",      0,      0, (FPTR)do_reformat,
  158.     "remeol",        0, CF_COK, (FPTR)do_remeol,
  159. #ifndef NO_DO2
  160.     "rempath",       1, CF_COK, (FPTR)do_rempath,
  161. #endif
  162.     "repeat",        2, CF_ICO|CF_COK, (FPTR)do_repeat,
  163.     "repstr",        1, CF_COK, (FPTR)do_findstr,
  164.     "resettoggle",   1, CF_COK, (FPTR)do_toggle,
  165.     "resize",        2,      0, (FPTR)do_resize,
  166.     "return",        0, CF_COK, (FPTR)do_return,   /* special meaning in command line mode */
  167.     "right",         0, CF_COK, (FPTR)do_right,
  168. #if AREXX
  169.     "rx",            1,      0, (FPTR)do_rx,       /* explicit ARexx macro invocation      */
  170.     "rx1",           2,      0, (FPTR)do_rx1,      /* explicit, with 1 arg  to ARexx macro */
  171.     "rx2",           3,      0, (FPTR)do_rx2,      /* explicit, with 2 args to ARexx macro */
  172. #endif
  173.     "saveas",        1, CF_ICO|CF_COK, (FPTR)do_saveas,
  174.     "saveconfig",    0, CF_ICO|CF_COK, (FPTR)do_saveconfig,
  175.     "savemap",       1, CF_ICO|CF_COK, (FPTR)do_savemap,  /* checks com name for mode */
  176.     "saveold",       0, CF_ICO|CF_COK, (FPTR)do_save,
  177.     "savesmap",      1, CF_ICO|CF_COK, (FPTR)do_savemap,
  178.     "savetabs",      1, CF_ICO|CF_COK, (FPTR)do_savetabs,
  179.     "scanf",         1, CF_COK, (FPTR)do_scanf,
  180.     "screenbottom",  0,      0, (FPTR)do_screenbottom,
  181.     "screentop",     0,      0, (FPTR)do_screentop,
  182.     "scrollup",      0,      0, (FPTR)do_scrollup,
  183.     "scrolldown",    0,      0, (FPTR)do_scrolldown,
  184.     "set",           2, CF_ICO|CF_COK, (FPTR)do_set,
  185.     "setenv",        2, CF_ICO|CF_COK, (FPTR)do_setenv,
  186.     "setfont",       2,      0, (FPTR)do_setfont,
  187.     "setparcol",     1, CF_COK, (FPTR)do_setparcol,
  188.     "settoggle",     1, CF_COK, (FPTR)do_toggle,
  189.     "source",        1, CF_COK, (FPTR)do_source,
  190.     "split",         0,      0, (FPTR)do_split,
  191.     "swapmark",      0,      0, (FPTR)do_swapmark,
  192.     "tab",           0, CF_COK, (FPTR)do_tab,
  193.     "tabstop",       1, CF_COK, (FPTR)do_tabstop,
  194.     "title",         1,      0, (FPTR)do_title,
  195.     "tlate",         1, CF_COK, (FPTR)do_tlate,
  196.     "toggle",        1, CF_COK, (FPTR)do_toggle,
  197.     "tomouse",       0,      0, (FPTR)do_tomouse,
  198.     "top",           0,      0, (FPTR)do_top,
  199.     "tpen",          1,      0, (FPTR)do_tpen,
  200.     "unblock",       0,      0, (FPTR)do_block,
  201.     "undeline",      0,      0, (FPTR)do_undeline,
  202.     "undo",          0,      0, (FPTR)do_undo,
  203.     "unjustify",     0,      0, (FPTR)do_unjustify,
  204.     "unmap",         1, CF_ICO|CF_COK, (FPTR)do_unmap,
  205.     /*
  206.     "urow",          1, CF_COK, (FPTR)do_urow,
  207.     */
  208.     "unset",         1, CF_ICO|CF_COK, (FPTR)do_unset,
  209.     "unsetenv",      1, CF_ICO|CF_COK, (FPTR)do_unsetenv,
  210.     "up",            0,      0, (FPTR)do_up,
  211.     "while",         2, CF_ICO|CF_COK, (FPTR)do_if,
  212.     "wleft",         0, CF_COK, (FPTR)do_wleft,
  213.     "wordwrap",      1, CF_COK, (FPTR)do_wordwrap,
  214.     "wright",        0, CF_COK, (FPTR)do_wright,
  215.     NULL, 0, 0, NULL
  216. };
  217.  
  218. void
  219. init_command()
  220. {
  221.     short hi;
  222.     COMM *comm;
  223.  
  224.     hi = sizeof(Comm)/sizeof(Comm[0]) - 2;
  225.     comm = Comm + hi;
  226.  
  227.     while (hi >= 0) {
  228.     hindex[comm->name[0] - 'a'] = hi;
  229.     --hi;
  230.     --comm;
  231.     }
  232. }
  233.  
  234. #define MAXIA    5
  235.  
  236. do_command(str)
  237. char *str;
  238. {
  239.     char *arg;
  240.     char *aux1, *aux2;
  241.     char *repstr[MAXIA];
  242.     char quoted;
  243.     short repi = 0;
  244.     short i, j;
  245.     static int level;
  246.  
  247.     if (++level > 20) {
  248.     title("Recursion Too Deep!");
  249.     --level;
  250. #if AREXX
  251.     foundcmd = 1;    /* to prevent us from trying an ARexx macro */
  252. #endif
  253.     return(0);
  254.     }
  255.     while (arg = breakout(&str, "ed, &aux1)) {
  256.     if (quoted) {
  257.         if (Ep->iconmode)
  258.         uniconify();
  259.         text_write(arg);
  260.         goto loop;
  261.     }
  262.     for (i = 0; arg[i]; ++i) {
  263.         if (arg[i] >= 'A' && arg[i] <= 'Z')
  264.         arg[i] += 'a' - 'A';
  265.     }
  266.  
  267.     if (arg[0] >= 'a' && arg[0] <= 'z') {
  268.         COMM *comm = &Comm[hindex[arg[0]-'a']];
  269.         for (; comm->name && comm->name[0] == arg[0]; ++comm) {
  270.         if (strcmp(arg, comm->name) == 0) {
  271. #if AREXX
  272.             foundcmd = 1;
  273. #endif
  274.             av[0] = (ubyte *)comm->name;
  275.             for (j = 1; j <= comm->args; ++j) {
  276.             av[j] = (ubyte *)breakout(&str, "ed, &aux2);
  277.             if (aux2) {
  278.                 if (repi == MAXIA) {
  279.                 free(aux2);
  280.                 title("Command too complex");
  281.                 goto fail;
  282.                 } else {
  283.                 repstr[repi++] = aux2;
  284.                 }
  285.             }
  286.             if (!av[j]) {
  287.                 title("Bad argument");
  288.                 goto fail;
  289.             }
  290.             }
  291.             av[j] = NULL;   /* end of arglist */
  292.             if ((comm->flags & CF_COK) || !Comlinemode) {
  293.             if (comm->flags & CF_PAR) {
  294.                 if (Partial)
  295.                 free(Partial);
  296.                 Partial = (char *)malloc(strlen(str)+1);
  297.                 strcpy(Partial, str);
  298.                 str += strlen(str);     /*  skip string */
  299.             }
  300.             if (Ep->iconmode && !(comm->flags & CF_ICO))
  301.                 uniconify();
  302.             (*comm->func)(-1);
  303.             }
  304.             if (Abortcommand)
  305.             goto fail;
  306.             goto loop;
  307.         }
  308.         }
  309.     }
  310.  
  311.     /* Command not found, check for macro    */
  312.  
  313.     {
  314.         char *str;
  315.         int ret;
  316.         if ((str = keyspectomacro(arg)) || (str = menutomacro(arg))) {
  317.         str = (char *)strcpy(malloc(strlen(str)+1), str);
  318.         ret = do_command(str);
  319.         free(str);
  320. #if AREXX
  321.         if (ret) {
  322.             foundcmd = 1;   /* dunno about this yet for ARexx macros */
  323.             goto loop;
  324.         }
  325. #else
  326.         if (ret)
  327.             goto loop;
  328. #endif
  329.         goto fail;
  330.         }
  331.     }
  332.  
  333.     /* Command still not found, check for public macro  */
  334.     /* code to be added */
  335.  
  336. #if AREXX
  337.     do_rxImplied(arg, str);
  338. #else
  339.     title("Unknown Command");
  340. #endif
  341. fail:
  342.     --level;
  343.     while (--repi >= 0)
  344.         free(repstr[repi]);
  345.     if (aux1)
  346.         free(aux1);
  347.     return(0);
  348. loop:
  349.     if (aux1)
  350.         free(aux1);
  351.     }
  352.     --level;
  353.     while (--repi >= 0)
  354.     free(repstr[repi]);
  355.     return(1);
  356. }
  357.  
  358. void
  359. do_null()
  360. {
  361. }
  362.  
  363. void
  364. do_source()
  365. {
  366.     char buf[256];
  367.     FILE *fi;
  368.     char *str;
  369.     BPTR oldlock = CurrentDir(DupLock((BPTR)Ep->dirlock));
  370.  
  371.     if (fi = fopen(av[1], "r")) {
  372.     while (fgets(buf, 256, fi)) {
  373.         if (buf[0] == '#')
  374.         continue;
  375.         for (str = buf; *str; ++str) {
  376.         if (*str == 9)
  377.             *str = ' ';
  378.         }
  379.         if (str > buf && str[-1] == '\n')
  380.         str[-1] = 0;
  381.         do_command(buf);
  382.     }
  383.     fclose(fi);
  384.     } else {
  385.     if (av[0])
  386.         title("File not found");
  387.     }
  388.     UnLock(CurrentDir(oldlock));
  389. }
  390.  
  391.  
  392. void
  393. do_quit()
  394. {
  395.     extern char Quitflag;
  396.  
  397.     Quitflag = 1;
  398. }
  399.  
  400. void
  401. do_execute()
  402. {
  403.     BPTR oldlock = CurrentDir((BPTR)Ep->dirlock);
  404.     BPTR NilFH = Open("null:", 1006);
  405.     PROC *proc = (PROC *)FindTask(NULL);
  406.  
  407.     if (NilFH) {
  408.     void *oldConsoleTask = proc->pr_ConsoleTask;
  409.     proc->pr_ConsoleTask = (APTR)BTOCP(NilFH, struct FileHandle *)->fh_Port;
  410.     Execute(av[1], NilFH, NilFH);
  411.     proc->pr_ConsoleTask = oldConsoleTask;
  412.     Close(NilFH);
  413.     } else {
  414.     title("NULL: device required for (execute)");
  415.     }
  416.     CurrentDir(oldlock);
  417. }
  418.  
  419. /*
  420.  * repeat X command
  421.  *
  422.  * Since repeat takes up 512+ stack, it should not be nested more than
  423.  * twice.
  424.  *
  425.  * (if X is not a number it can be abbr. with 2 chars)
  426.  *
  427.  * X =    N     -number of repeats
  428.  *    line  -current line # (lines begin at 1)
  429.  *    lbot  -#lines to the bottom, inc. current
  430.  *    cleft -column # (columns begin at 0)
  431.  *        (thus is also chars to the left)
  432.  *    cright-#chars to eol, including current char
  433.  *    tr    -#char positions to get to next tab stop
  434.  *    tl    -#char positions to get to next backtab stop
  435.  */
  436.  
  437. #define SC(a,b) ((a)<<8|(b))
  438.  
  439. void
  440. do_repeat()
  441. {
  442.     ubyte *ptr = av[1];
  443.     unsigned long n;
  444.     char buf1[256];
  445.     char buf2[256];
  446.  
  447.     breakreset();
  448.     strcpy(buf1, av[2]);
  449.     switch((ptr[0]<<8)+ptr[1]) {
  450.     case SC('l','i'):
  451.     n = text_lineno();
  452.     break;
  453.     case SC('l','b'):
  454.     n = text_lines() - text_lineno() + 1;
  455.     break;
  456.     case SC('c','l'):
  457.     n = text_colno();
  458.     break;
  459.     case SC('c','r'):
  460.     n = text_cols() - text_colno();
  461.     break;
  462.     case SC('t','r'):
  463.     n = text_tabsize()-(text_colno() % text_tabsize());
  464.     break;
  465.     case SC('t','l'):
  466.     n = text_colno() % text_tabsize();
  467.     if (n == 0)
  468.         n = text_tabsize();
  469.     break;
  470.     default:
  471.     n = atoi(av[1]);
  472.     break;
  473.     }
  474.     while (n > 0) {
  475.     strcpy(buf2, buf1);
  476.     if (do_command(buf2) == 0 || breakcheck()) {
  477.         Abortcommand = 1;
  478.         break;
  479.     }
  480.     --n;
  481.     }
  482. }
  483.  
  484. /*
  485.  *  BREAKOUT()
  486.  *
  487.  *  Break out the next argument.  The argument is space delimited and
  488.  *  might be quoted with `' or (), or single quoted as 'c or )c
  489.  *
  490.  *  Also:    $var        -variable insertion
  491.  *        ^c        -control character
  492.  */
  493.  
  494. char *
  495. breakout(ptr, quoted, paux)
  496. char **ptr;
  497. char **paux;
  498. char *quoted;
  499. {
  500.     char *str = *ptr;
  501.     char *base;
  502.     short count;
  503.     char opc;
  504.     char clc;
  505.     char immode;
  506.     char isaux;
  507.     char buf[256];
  508.     short di;
  509.  
  510.     {
  511.     short z = 0;
  512.  
  513.     count = z;
  514.     opc   = z;
  515.     clc   = z;
  516.     immode= z;
  517.     isaux = z;
  518.     di    = z;
  519.     }
  520.  
  521.     *quoted = 0;
  522.     *paux = NULL;
  523.     while (*str == ' ')
  524.     ++str;
  525.     if (!*str)
  526.     return(NULL);
  527.  
  528.     *ptr = str;
  529.     base = str;
  530.     while (*str) {
  531.     if (immode) {
  532.         if (di != sizeof(buf)-1)
  533.         buf[di++] = *str;
  534.         ++str;
  535.         continue;
  536.     }
  537.     if (count == 0) {
  538.         if (*str == ' ')
  539.         break;
  540.         if (*str == '\'' || *str == ')')
  541.         clc = *str;
  542.         if (*str == '`') {
  543.         opc = '`';
  544.         clc = '\'';
  545.         }
  546.         if (*str == '(') {
  547.         opc = '(';
  548.         clc = ')';
  549.         }
  550.     }
  551.     if (*str == opc) {
  552.         ++count;
  553.         if (str == *ptr) {
  554.         *quoted = 1;
  555.         base = ++str;
  556.         continue;
  557.         }
  558.     }
  559.     if (*str == clc) {
  560.         --count;
  561.         if (count == 0 && *quoted)     /*  end of argument     */
  562.         break;
  563.         if (str == *ptr && count < 0) {
  564.         immode = 1;
  565.         *quoted = 1;
  566.         base = ++str;
  567.         continue;
  568.         }
  569.     }
  570.  
  571.     /*
  572.      *  $varname $(varname) $`varname'.  I.E. three forms are allowed,
  573.      *  which allows one to insert the string almost anywhere.  The
  574.      *  first form names are limited to alpha-numerics, '-', and '_'.
  575.      */
  576.  
  577.     if (*str == '$') {
  578.         char *ptr;
  579.         char *tmpptr;
  580.         char c, ce;
  581.         short len;
  582.  
  583.         ce = 0;                /*    first form  */
  584.         ++str;                /*    skip $        */
  585.         if (*str == '(') {              /*  second form */
  586.         ce = ')';
  587.         ++str;
  588.         } else if (*str == '`') {       /*  third form  */
  589.         ce = '\'';
  590.         ++str;
  591.         }
  592.         ptr = str;                /*    start of varname    */
  593.         if (ce) {                       /*  until end char OR   */
  594.         while (*ptr && *ptr != ce)
  595.             ++ptr;
  596.         } else {                /*    smart end-varname   */
  597.         while ((*ptr >= 'a' && *ptr <= 'z') ||
  598.             (*ptr >= 'A' && *ptr <= 'Z') ||
  599.             (*ptr >= '0' && *ptr <= '9') ||
  600.             *ptr == '-' || *ptr == '_' ) {
  601.             ++ptr;
  602.         }
  603.         }
  604.         len = ptr - str;            /*    length of variable  */
  605.  
  606.         c = *ptr; *ptr = 0;         /*    temp. terminate \0  */
  607.         if (strcmp(str, "scanf") == 0) {
  608.         *ptr = c;
  609.         isaux = 1;
  610.         if (di + strlen(String) < sizeof(buf)-1) {
  611.             strcpy(buf + di, String);
  612.             di += strlen(buf + di);
  613.         }
  614.         str += len;            /*    next string pos     */
  615.         if (ce)
  616.             ++str;
  617.         continue;
  618.         }
  619.         if (strcmp(str, "fpath") == 0) {
  620.         short i;
  621.         for (i = strlen(Ep->Name); i >= 0; --i) {
  622.             if (Ep->Name[i] == ':' || Ep->Name[i] == '/')
  623.             break;
  624.         }
  625.         ++i;
  626.         *ptr = c;
  627.         isaux = 1;
  628.         if (di + i < sizeof(buf)-1) {
  629.             movmem(Ep->Name, buf + di, i);
  630.             di += i;
  631.             buf[di] = 0;
  632.         }
  633.         str += len;
  634.         if (ce)
  635.             ++str;
  636.         continue;
  637.         }
  638.         if (strcmp(str, "fname") == 0) {
  639.         short i;
  640.         short j;
  641.         for (i = strlen(Ep->Name); i >= 0; --i) {
  642.             if (Ep->Name[i] == ':' || Ep->Name[i] == '/')
  643.             break;
  644.         }
  645.         ++i;
  646.         j = strlen(Ep->Name + i);
  647.         *ptr = c;
  648.         isaux = 1;
  649.         if (di + j < sizeof(buf)-1) {
  650.             movmem(Ep->Name + i, buf + di, j);
  651.             di += j;
  652.             buf[di] = 0;
  653.         }
  654.         str += len;
  655.         if (ce)
  656.             ++str;
  657.         continue;
  658.         }
  659.         if (strcmp(str, "filename") == 0) {
  660.         *ptr = c;
  661.         isaux = 1;
  662.         if (di + strlen(Ep->Name) < sizeof(buf)-1) {
  663.             strcpy(buf + di, Ep->Name);
  664.             di += strlen(buf + di);
  665.         }
  666.         str += len;
  667.         if (ce)
  668.             ++str;
  669.         continue;
  670.         }
  671.         if (strcmp(str, "colno") == 0) {
  672.         *ptr = c;
  673.         isaux = 1;
  674.         if (di < sizeof(buf)-8) {
  675.             sprintf(buf + di, "%ld", Ep->Column + 1);
  676.             di += strlen(buf + di);
  677.         }
  678.         str += len;
  679.         if (ce)
  680.             ++str;
  681.         continue;
  682.         }
  683.         if (strcmp(str, "lineno") == 0) {
  684.         *ptr = c;
  685.         isaux = 1;
  686.         if (di < sizeof(buf)-8) {
  687.             sprintf(buf + di, "%ld", Ep->Line + 1);
  688.             di += strlen(buf + di);
  689.         }
  690.         str += len;
  691.         if (ce)
  692.             ++str;
  693.         continue;
  694.         }
  695.         if (strcmp(str, "margin") == 0) {                       /* MMW */
  696.         *ptr = c;
  697.         isaux = 1;
  698.         if (di < sizeof(buf)-8) {
  699.             sprintf(buf + di, "%ld", Ep->Margin);
  700.             di += strlen(buf + di);
  701.         }
  702.         str += len;
  703.         if (ce)
  704.             ++str;
  705.         continue;
  706.         }
  707.         if (strcmp(str, "modified") == 0) {                       /* MMW */
  708.         *ptr = c;
  709.         isaux = 1;
  710.         if (di < sizeof(buf)-8) {
  711.             sprintf(buf + di, "%ld", Ep->Modified ? 1 : 0);
  712.             di += strlen(buf + di);
  713.         }
  714.         str += len;
  715.         if (ce)
  716.             ++str;
  717.         continue;
  718.         }
  719.         if (strcmp(str, "currentline") == 0) {
  720.         short i;
  721.  
  722.         *ptr = c;
  723.         isaux = 1;
  724.         if (di < sizeof(buf)-8) {
  725.             for (i = strlen(Current) - 1; i >= 0 && Current[i] == ' '; --i);
  726.             ++i;
  727.             if (i > 0)
  728.             strncpy(buf + di, Current, i);
  729.             *(buf + di + i) = 0;
  730.             di += strlen(buf + di);
  731.         }
  732.         str += len;
  733.         if (ce)
  734.             ++str;
  735.         continue;
  736.         }
  737.  
  738.  
  739.  
  740.  
  741.         if (tmpptr = getvar(str)) {
  742.         ptr = tmpptr;
  743.         str[len] = c;
  744.         isaux = 1;
  745.         if (di + strlen(ptr) < sizeof(buf)-1) {
  746.             strcpy(buf + di, ptr);
  747.             di += strlen(buf + di);
  748.         }
  749.         str += len;
  750.         if (ce)
  751.             ++str;
  752.         free(ptr);
  753.         continue;
  754.         }
  755.         *ptr = c;
  756.         --str;
  757.         if (ce)
  758.         --str;
  759.     }
  760.     if (*str == '^' && (str[1] & 0x1F)) {
  761.         ++str;
  762.         *str &= 0x1F;
  763.         isaux = 1;
  764.     }
  765.     if (*str == '\\' && str[1]) {
  766.         ++str;
  767.         isaux = 1;
  768.     }
  769.     buf[di++] = *str++;
  770.     }
  771.     buf[di++] = 0;
  772.     if (isaux) {
  773.     *paux = malloc(di);
  774.     strcpy(*paux, buf);
  775.     base = *paux;
  776.     }
  777.     if (*str) {             /*  space ended */
  778.     *str = '\0';
  779.     *ptr = str + 1;     /*    next arg    */
  780.     } else {
  781.     *ptr = str;        /*    last arg    */
  782.     }
  783.     return(base);
  784. }
  785.  
  786.  
  787.