[BACK]Return to echo.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mg

Diff for /src/usr.bin/mg/echo.c between version 1.61 and 1.62

version 1.61, 2015/10/31 11:59:47 version 1.62, 2015/11/09 07:52:18
Line 174 
Line 174 
         int      dynbuf = (buf == NULL);          int      dynbuf = (buf == NULL);
         int      cpos, epos;            /* cursor, end position in buf */          int      cpos, epos;            /* cursor, end position in buf */
         int      c, i, y;          int      c, i, y;
         int      cplflag = FALSE;       /* display completion list */          int      cplflag;               /* display completion list */
         int      cwin = FALSE;          /* completion list created */          int      cwin = FALSE;          /* completion list created */
         int      mr = 0;                /* match left arrow */          int      mr, ml;                /* match left/right arrows */
         int      ml = 0;                /* match right arrow */          int      esc;                   /* position in esc pattern */
         int      esc = 0;               /* position in esc pattern */  
         struct buffer   *bp;                    /* completion list buffer */          struct buffer   *bp;                    /* completion list buffer */
         struct mgwin    *wp;                    /* window for compl list */          struct mgwin    *wp;                    /* window for compl list */
         int      match;                 /* esc match found */          int      match;                 /* esc match found */

Legend:
Removed from v.1.61  
changed lines
  Added in v.1.62