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

Annotation of src/usr.bin/mg/def.h, Revision 1.31

1.31    ! deraadt     1: /*     $OpenBSD: def.h,v 1.30 2002/02/20 22:30:54 vincent Exp $        */
1.30      vincent     2:
                      3: #include <sys/queue.h>
1.6       niklas      4:
1.1       deraadt     5: /*
                      6:  * This file is the general header file for all parts
1.4       millert     7:  * of the Mg display editor. It contains all of the
1.1       deraadt     8:  * general definitions and macros. It also contains some
                      9:  * conditional compilation flags. All of the per-system and
                     10:  * per-terminal definitions are in special header files.
                     11:  * The most common reason to edit this file would be to zap
                     12:  * the definition of CVMVAS or BACKUP.
                     13:  */
1.4       millert    14: #include       "sysdef.h"      /* Order is critical.            */
1.1       deraadt    15: #include       "ttydef.h"
                     16: #include       "chrdef.h"
                     17:
                     18: #ifdef NO_MACRO
                     19: #ifndef NO_STARTUP
1.4       millert    20: #define NO_STARTUP             /* NO_MACRO implies NO_STARTUP */
1.1       deraadt    21: #endif
                     22: #endif
                     23:
1.18      mickey     24: typedef int    (*PF)();        /* generally useful type */
1.1       deraadt    25:
                     26: /*
                     27:  * Table sizes, etc.
                     28:  */
1.7       art        29: #define NFILEN 1024            /* Length, file name.            */
                     30: #define NBUFN  NFILEN          /* Length, buffer name.          */
1.4       millert    31: #define NLINE  256             /* Length, line.                 */
                     32: #define PBMODES 4              /* modes per buffer              */
                     33: #define NKBDM  256             /* Length, keyboard macro.       */
                     34: #define NPAT   80              /* Length, pattern.              */
                     35: #define HUGE   1000            /* A rather large number.        */
                     36: #define NSRCH  128             /* Undoable search commands.     */
                     37: #define NXNAME 64              /* Length, extended command.     */
                     38: #define NKNAME 20              /* Length, key names             */
1.1       deraadt    39: /*
                     40:  * Universal.
                     41:  */
1.4       millert    42: #define FALSE  0               /* False, no, bad, etc.          */
                     43: #define TRUE   1               /* True, yes, good, etc.         */
                     44: #define ABORT  2               /* Death, ^G, abort, etc.        */
1.1       deraadt    45:
1.4       millert    46: #define KPROMPT 2              /* keyboard prompt               */
1.1       deraadt    47:
                     48: /*
                     49:  * These flag bits keep track of
                     50:  * some aspects of the last command. The CFCPCN
                     51:  * flag controls goal column setting. The CFKILL
                     52:  * flag controls the clearing versus appending
                     53:  * of data in the kill buffer.
                     54:  */
1.4       millert    55: #define CFCPCN 0x0001          /* Last command was C-P, C-N     */
                     56: #define CFKILL 0x0002          /* Last command was a kill       */
                     57: #define CFINS  0x0004          /* Last command was self-insert */
1.1       deraadt    58:
                     59: /*
                     60:  * File I/O.
                     61:  */
1.4       millert    62: #define FIOSUC 0               /* Success.                      */
                     63: #define FIOFNF 1               /* File not found.               */
                     64: #define FIOEOF 2               /* End of file.                  */
                     65: #define FIOERR 3               /* Error.                        */
                     66: #define FIOLONG 4              /* long line partially read      */
1.1       deraadt    67:
                     68: /*
                     69:  * Directory I/O.
                     70:  */
1.4       millert    71: #define DIOSUC 0               /* Success.                      */
                     72: #define DIOEOF 1               /* End of file.                  */
                     73: #define DIOERR 2               /* Error.                        */
1.1       deraadt    74:
                     75: /*
                     76:  * Display colors.
                     77:  */
1.4       millert    78: #define CNONE  0               /* Unknown color.                */
                     79: #define CTEXT  1               /* Text color.                   */
                     80: #define CMODE  2               /* Mode line color.              */
                     81:
                     82: /*
1.22      millert    83:  * Flags for keyboard invoked functions.
1.4       millert    84:  */
                     85: #define FFUNIV         1       /* universal argument            */
1.27      deraadt    86: #define FFNEGARG       2       /* negative only argument        */
1.4       millert    87: #define FFOTHARG       4       /* other argument                */
                     88: #define FFARG          7       /* any argument                  */
                     89: #define FFRAND         8       /* Called by other function      */
1.1       deraadt    90:
                     91: /*
                     92:  * Flags for "eread".
                     93:  */
1.4       millert    94: #define EFFUNC 0x0001          /* Autocomplete functions.       */
                     95: #define EFBUF  0x0002          /* Autocomplete buffers.         */
                     96: #define EFFILE 0x0004          /* " files (maybe someday)       */
                     97: #define EFAUTO 0x0007          /* Some autocompleteion on       */
                     98: #define EFNEW  0x0008          /* New prompt.                   */
                     99: #define EFCR   0x0010          /* Echo CR at end; last read.    */
1.20      art       100: #define EFDEF  0x0020          /* buffer contains default args  */
1.1       deraadt   101:
                    102: /*
                    103:  * Flags for "ldelete"/"kinsert"
                    104:  */
                    105: #define KNONE  0
                    106: #define KFORW  1
                    107: #define KBACK  2
                    108:
                    109: /*
                    110:  * All text is kept in circularly linked
                    111:  * lists of "LINE" structures. These begin at the
                    112:  * header line (which is the blank line beyond the
                    113:  * end of the buffer). This line is pointed to by
                    114:  * the "BUFFER". Each line contains a the number of
                    115:  * bytes in the line (the "used" size), the size
                    116:  * of the text array, and the text. The end of line
                    117:  * is not stored as a byte; it's implied. Future
                    118:  * additions will include update hints, and a
                    119:  * list of marks into the line.
                    120:  */
1.4       millert   121: typedef struct LINE {
1.18      mickey    122:        struct LINE     *l_fp;  /* Link to the next line         */
                    123:        struct LINE     *l_bp;  /* Link to the previous line     */
                    124:        int             l_size; /* Allocated size                */
                    125:        int             l_used; /* Used size                     */
1.26      vincent   126:        char            *l_text;        /* Content of the line */
1.4       millert   127: } LINE;
1.1       deraadt   128:
                    129: /*
                    130:  * The rationale behind these macros is that you
                    131:  * could (with some editing, like changing the type of a line
                    132:  * link from a "LINE *" to a "REFLINE", and fixing the commands
                    133:  * like file reading that break the rules) change the actual
                    134:  * storage representation of lines to use something fancy on
                    135:  * machines with small address spaces.
                    136:  */
                    137: #define lforw(lp)      ((lp)->l_fp)
                    138: #define lback(lp)      ((lp)->l_bp)
                    139: #define lgetc(lp, n)   (CHARMASK((lp)->l_text[(n)]))
                    140: #define lputc(lp, n, c) ((lp)->l_text[(n)]=(c))
                    141: #define llength(lp)    ((lp)->l_used)
                    142: #define ltext(lp)      ((lp)->l_text)
                    143:
                    144: /*
                    145:  * All repeated structures are kept as linked lists of structures.
                    146:  * All of these start with a LIST structure (except lines, which
                    147:  * have their own abstraction). This will allow for
                    148:  * later conversion to generic list manipulation routines should
                    149:  * I decide to do that. it does mean that there are four extra
                    150:  * bytes per window. I feel that this is an acceptable price,
                    151:  * considering that there are usually only one or two windows.
                    152:  */
                    153: typedef struct LIST {
                    154:        union {
1.18      mickey    155:                struct MGWIN    *l_wp;
                    156:                struct BUFFER   *x_bp;  /* l_bp is used by LINE */
                    157:                struct LIST     *l_nxt;
1.1       deraadt   158:        } l_p;
1.4       millert   159:        char *l_name;
1.1       deraadt   160: } LIST;
1.4       millert   161:
1.1       deraadt   162: /*
                    163:  * Usual hack - to keep from uglifying the code with lotsa
                    164:  * references through the union, we #define something for it.
                    165:  */
                    166: #define l_next l_p.l_nxt
                    167:
                    168: /*
                    169:  * There is a window structure allocated for
                    170:  * every active display window. The windows are kept in a
                    171:  * big list, in top to bottom screen order, with the listhead at
                    172:  * "wheadp". Each window contains its own values of dot and mark.
                    173:  * The flag field contains some bits that are set by commands
                    174:  * to guide redisplay; although this is a bit of a compromise in
                    175:  * terms of decoupling, the full blown redisplay is just too
                    176:  * expensive to run for every input character.
                    177:  */
1.4       millert   178: typedef struct MGWIN {
1.18      mickey    179:        LIST            w_list;         /* List header                  */
                    180:        struct BUFFER   *w_bufp;        /* Buffer displayed in window   */
                    181:        struct LINE     *w_linep;       /* Top line in the window       */
                    182:        struct LINE     *w_dotp;        /* Line containing "."          */
                    183:        struct LINE     *w_markp;       /* Line containing "mark"       */
                    184:        int             w_doto;         /* Byte offset for "."          */
                    185:        int             w_marko;        /* Byte offset for "mark"       */
                    186:        char            w_toprow;       /* Origin 0 top row of window   */
                    187:        char            w_ntrows;       /* # of rows of text in window  */
                    188:        char            w_force;        /* If NZ, forcing row.          */
                    189:        char            w_flag;         /* Flags.                       */
1.4       millert   190: } MGWIN;
1.1       deraadt   191: #define w_wndp w_list.l_p.l_wp
                    192: #define w_name w_list.l_name
                    193:
                    194: /*
                    195:  * Window flags are set by command processors to
                    196:  * tell the display system what has happened to the buffer
                    197:  * mapped by the window. Setting "WFHARD" is always a safe thing
                    198:  * to do, but it may do more work than is necessary. Always try
                    199:  * to set the simplest action that achieves the required update.
                    200:  * Because commands set bits in the "w_flag", update will see
                    201:  * all change flags, and do the most general one.
                    202:  */
1.4       millert   203: #define WFFORCE 0x01           /* Force reframe.                */
                    204: #define WFMOVE 0x02            /* Movement from line to line.   */
                    205: #define WFEDIT 0x04            /* Editing within a line.        */
                    206: #define WFHARD 0x08            /* Better to a full display.     */
                    207: #define WFMODE 0x10            /* Update mode line.             */
1.1       deraadt   208:
                    209: /*
                    210:  * Text is kept in buffers. A buffer header, described
                    211:  * below, exists for every buffer in the system. The buffers are
                    212:  * kept in a big list, so that commands that search for a buffer by
                    213:  * name can find the buffer header. There is a safe store for the
                    214:  * dot and mark in the header, but this is only valid if the buffer
                    215:  * is not being displayed (that is, if "b_nwnd" is 0). The text for
                    216:  * the buffer is kept in a circularly linked list of lines, with
                    217:  * a pointer to the header line in "b_linep".
                    218:  */
1.4       millert   219: typedef struct BUFFER {
1.18      mickey    220:        LIST            b_list;         /* buffer list pointer           */
                    221:        struct BUFFER   *b_altb;        /* Link to alternate buffer      */
                    222:        struct LINE     *b_dotp;        /* Link to "." LINE structure    */
                    223:        struct LINE     *b_markp;       /* ditto for mark                */
                    224:        struct LINE     *b_linep;       /* Link to the header LINE       */
                    225:        struct MAPS_S   *b_modes[PBMODES]; /* buffer modes               */
                    226:        int             b_doto;         /* Offset of "." in above LINE   */
                    227:        int             b_marko;        /* ditto for the "mark"          */
                    228:        short           b_nmodes;       /* number of non-fundamental modes */
                    229:        char            b_nwnd;         /* Count of windows on buffer    */
                    230:        char            b_flag;         /* Flags                         */
                    231:        char            b_fname[NFILEN];/* File name                     */
                    232:        struct fileinfo b_fi;           /* File attributes               */
1.4       millert   233: } BUFFER;
1.1       deraadt   234: #define b_bufp b_list.l_p.x_bp
                    235: #define b_bname b_list.l_name
                    236:
1.4       millert   237: #define BFCHG  0x01            /* Changed.                      */
                    238: #define BFBAK  0x02            /* Need to make a backup.        */
1.1       deraadt   239: #ifdef NOTAB
1.4       millert   240: #define BFNOTAB 0x04           /* no tab mode                   */
1.1       deraadt   241: #endif
1.4       millert   242: #define BFOVERWRITE 0x08       /* overwrite mode                */
1.1       deraadt   243:
                    244: /*
                    245:  * This structure holds the starting position
                    246:  * (as a line/offset pair) and the number of characters in a
                    247:  * region of a buffer. This makes passing the specification
                    248:  * of a region around a little bit easier.
                    249:  */
1.4       millert   250: typedef struct {
1.18      mickey    251:        struct LINE     *r_linep;       /* Origin LINE address.          */
                    252:        int             r_offset;       /* Origin LINE offset.           */
                    253:        RSIZE           r_size;         /* Length in characters.         */
1.4       millert   254: } REGION;
                    255:
                    256: /*
1.30      vincent   257:  * This structure holds information about recent actions for the Undo command.
                    258:  */
                    259: struct undo_rec {
                    260:         LIST_ENTRY(undo_rec) next;
                    261:         BUFFER          *buf;
                    262:        enum {
                    263:                INSERT = 1,
                    264:                DELETE,
                    265:                CHANGE,
                    266:                BOUNDARY
                    267:        } type;
                    268:        REGION           region;
                    269:        int              pos;
                    270:        int              size;
                    271:         char            *content;
                    272: };
                    273:
                    274: LIST_HEAD(undo_list, undo_rec);
                    275:
                    276: /*
1.4       millert   277:  * Prototypes.
                    278:  */
                    279:
1.5       millert   280: /* tty.c X */
1.29      millert   281: void    ttinit(void);
                    282: void    ttreinit(void);
                    283: void    tttidy(void);
                    284: void    ttmove(int, int);
                    285: void    tteeol(void);
                    286: void    tteeop(void);
                    287: void    ttbeep(void);
                    288: void    ttinsl(int, int, int);
                    289: void    ttdell(int, int, int);
                    290: void    ttwindow(int, int);
                    291: void    ttnowindow(void);
                    292: void    ttcolor(int);
                    293: void    ttresize(void);
1.31    ! deraadt   294:
        !           295: volatile sig_atomic_t winch_flag;
1.4       millert   296:
                    297: /* ttyio.c */
1.29      millert   298: void    ttopen(void);
                    299: int     ttraw(void);
                    300: void    ttclose(void);
                    301: int     ttcooked(void);
                    302: int     ttputc(int);
                    303: void    ttflush(void);
                    304: int     ttgetc(void);
                    305: int     ttwait(int);
                    306: int     typeahead(void);
1.4       millert   307:
                    308: /* dir.c */
1.29      millert   309: void    dirinit(void);
                    310: int     changedir(int, int);
                    311: int     showcwdir(int, int);
1.4       millert   312:
                    313: /* dired.c */
1.29      millert   314: int     dired(int, int);
                    315: int     d_otherwindow(int, int);
                    316: int     d_undel(int, int);
                    317: int     d_undelbak(int, int);
                    318: int     d_findfile(int, int);
                    319: int     d_ffotherwindow(int, int);
                    320: int     d_expunge(int, int);
                    321: int     d_copy(int, int);
                    322: int     d_del(int, int);
                    323: int     d_rename(int, int);
1.5       millert   324:
                    325: /* file.c X */
1.29      millert   326: int     fileinsert(int, int);
                    327: int     filevisit(int, int);
                    328: int     poptofile(int, int);
                    329: BUFFER  *findbuffer(char *);
                    330: int     readin(char *);
                    331: int     insertfile(char *, char *, int);
                    332: int     filewrite(int, int);
                    333: int     filesave(int, int);
                    334: int     buffsave(BUFFER *);
                    335: int     makebkfile(int, int);
                    336: int     writeout(BUFFER *, char *);
                    337: void    upmodes(BUFFER *);
1.5       millert   338:
                    339: /* line.c X */
1.29      millert   340: LINE   *lalloc(int);
                    341: int     lrealloc(LINE *, int);
                    342: void    lfree(LINE *);
                    343: void    lchange(int);
                    344: int     linsert(int, int);
                    345: int     lnewline(void);
                    346: int     ldelete(RSIZE, int);
                    347: int     ldelnewline(void);
                    348: int     lreplace(RSIZE, char *, int);
                    349: void    kdelete(void);
                    350: int     kinsert(int, int);
                    351: int     kremove(int);
1.5       millert   352:
                    353: /* window.c X */
1.29      millert   354: int     reposition(int, int);
                    355: int     refresh(int, int);
                    356: int     nextwind(int, int);
                    357: int     prevwind(int, int);
                    358: int     onlywind(int, int);
                    359: int     splitwind(int, int);
                    360: int     enlargewind(int, int);
                    361: int     shrinkwind(int, int);
                    362: int     delwind(int, int);
                    363: MGWIN   *wpopup(void);
1.4       millert   364:
                    365: /* buffer.c */
1.29      millert   366: BUFFER  *bfind(char *, int);
                    367: int     poptobuffer(int, int);
                    368: int     killbuffer(int, int);
                    369: int     savebuffers(int, int);
                    370: int     listbuffers(int, int);
                    371: int     addlinef(BUFFER *, char *, ...);
1.12      art       372: #define         addline(bp, text)      addlinef(bp, "%s", text)
1.29      millert   373: int     anycb(int);
                    374: int     bclear(BUFFER *);
                    375: int     showbuffer(BUFFER *, MGWIN *, int);
                    376: MGWIN   *popbuf(BUFFER *);
                    377: int     bufferinsert(int, int);
                    378: int     usebuffer(int, int);
                    379: int     notmodified(int, int);
                    380: int     popbuftop(BUFFER *);
1.4       millert   381:
                    382: /* display.c */
1.29      millert   383: int    vtresize(int, int, int);
                    384: void   vtinit(void);
                    385: void   vttidy(void);
                    386: void   update(void);
1.5       millert   387:
                    388: /* echo.c X */
1.29      millert   389: void    eerase(void);
                    390: int     eyorn(char *);
                    391: int     eyesno(char *);
                    392: void    ewprintf(const char *fmt, ...);
                    393: int     ereply(const char *, char *, int, ...);
                    394: int     eread(const char *, char *, int, int, ...);
                    395: int     getxtra(LIST *, LIST *, int, int);
                    396: void    free_file_list(LIST *);
1.4       millert   397:
                    398: /* fileio.c */
1.29      millert   399: int     ffropen(char *, BUFFER *);
                    400: int     ffwopen(char *, BUFFER *);
                    401: int     ffclose(BUFFER *);
                    402: int     ffputbuf(BUFFER *);
                    403: int     ffgetline(char *, int, int *);
                    404: int     fbackupfile(char *);
                    405: char   *adjustname(char *);
                    406: char   *startupfile(char *);
                    407: int     copy(char *, char *);
                    408: BUFFER  *dired_(char *);
                    409: int     d_makename(LINE  *, char *, int);
                    410: LIST   *make_file_list(char *);
1.4       millert   411:
1.5       millert   412: /* kbd.c X */
1.29      millert   413: int     do_meta(int, int);
                    414: int     bsmap(int, int);
                    415: void    ungetkey(int);
                    416: int     getkey(int);
                    417: int     doin(void);
                    418: int     rescan(int, int);
                    419: int     universal_argument(int, int);
                    420: int     digit_argument(int, int);
                    421: int     negative_argument(int, int);
                    422: int     selfinsert(int, int);
                    423: int     quote(int, int);
1.4       millert   424:
                    425: /* main.c */
1.29      millert   426: int     ctrlg(int, int);
                    427: int     quit(int, int);
1.4       millert   428:
                    429: /* ttyio.c */
1.29      millert   430: void   panic(char *);
1.4       millert   431:
                    432: /* cinfo.c */
1.29      millert   433: char   *keyname(char  *, size_t, int);
1.4       millert   434:
                    435: /* basic.c */
1.29      millert   436: int     gotobol(int, int);
                    437: int     backchar(int, int);
                    438: int     gotoeol(int, int);
                    439: int     forwchar(int, int);
                    440: int     gotobob(int, int);
                    441: int     gotoeob(int, int);
                    442: int     forwline(int, int);
                    443: int     backline(int, int);
                    444: void    setgoal(void);
                    445: int     getgoal(LINE *);
                    446: int     forwpage(int, int);
                    447: int     backpage(int, int);
                    448: int     forw1page(int, int);
                    449: int     back1page(int, int);
                    450: int     pagenext(int, int);
                    451: void    isetmark(void);
                    452: int     setmark(int, int);
                    453: int     swapmark(int, int);
                    454: int     gotoline(int, int);
1.5       millert   455:
                    456: /* random.c X */
1.29      millert   457: int     showcpos(int, int);
                    458: int     getcolpos(void);
                    459: int     twiddle(int, int);
                    460: int     openline(int, int);
                    461: int     newline(int, int);
                    462: int     deblank(int, int);
                    463: int     justone(int, int);
                    464: int     delwhite(int, int);
                    465: int     indent(int, int);
                    466: int     forwdel(int, int);
                    467: int     backdel(int, int);
                    468: int     killline(int, int);
                    469: int     yank(int, int);
                    470: int     space_to_tabstop(int, int);
1.5       millert   471:
                    472: /* extend.c X */
1.29      millert   473: int     insert(int, int);
                    474: int     bindtokey(int, int);
                    475: int     localbind(int, int);
                    476: int     define_key(int, int);
                    477: int     unbindtokey(int, int);
                    478: int     localunbind(int, int);
                    479: int     extend(int, int);
                    480: int     evalexpr(int, int);
                    481: int     evalbuffer(int, int);
                    482: int     evalfile(int, int);
                    483: int     load(char *);
                    484: int     excline(char *);
1.5       millert   485:
                    486: /* help.c X */
1.29      millert   487: int     desckey(int, int);
                    488: int     wallchart(int, int);
                    489: int     help_help(int, int);
                    490: int     apropos_command(int, int);
1.5       millert   491:
                    492: /* paragraph.c X */
1.29      millert   493: int     gotobop(int, int);
                    494: int     gotoeop(int, int);
                    495: int     fillpara(int, int);
                    496: int     killpara(int, int);
                    497: int     fillword(int, int);
                    498: int     setfillcol(int, int);
1.5       millert   499:
                    500: /* word.c X */
1.29      millert   501: int     backword(int, int);
                    502: int     forwword(int, int);
                    503: int     upperword(int, int);
                    504: int     lowerword(int, int);
                    505: int     capword(int, int);
                    506: int     delfword(int, int);
                    507: int     delbword(int, int);
                    508: int     inword(void);
1.5       millert   509:
                    510: /* region.c X */
1.29      millert   511: int     killregion(int, int);
                    512: int     copyregion(int, int);
                    513: int     lowerregion(int, int);
                    514: int     upperregion(int, int);
                    515: int     prefixregion(int, int);
                    516: int     setprefix(int, int);
1.30      vincent   517: int     region_get_data(REGION *, char *, int);
                    518: int     region_put_data(const char *, int);
1.5       millert   519:
                    520: /* search.c X */
1.29      millert   521: int     forwsearch(int, int);
                    522: int     backsearch(int, int);
                    523: int     searchagain(int, int);
                    524: int     forwisearch(int, int);
                    525: int     backisearch(int, int);
                    526: int     queryrepl(int, int);
                    527: int     forwsrch(void);
                    528: int     backsrch(void);
                    529: int     readpattern(char *);
1.5       millert   530:
                    531: /* spawn.c X */
1.29      millert   532: int     spawncli(int, int);
1.5       millert   533:
                    534: /* ttykbd.c X */
1.29      millert   535: void    ttykeymapinit(void);
                    536: void    ttykeymaptidy(void);
1.5       millert   537:
                    538: /* match.c X */
1.29      millert   539: int     showmatch(int, int);
1.5       millert   540:
                    541: /* version.c X */
1.29      millert   542: int     showversion(int, int);
1.5       millert   543:
                    544: #ifndef NO_MACRO
                    545: /* macro.c X */
1.29      millert   546: int     definemacro(int, int);
                    547: int     finishmacro(int, int);
                    548: int     executemacro(int, int);
1.5       millert   549: #endif /* !NO_MACRO */
                    550:
                    551: /* modes.c X */
1.29      millert   552: int     indentmode(int, int);
                    553: int     fillmode(int, int);
                    554: int     blinkparen(int, int);
1.5       millert   555: #ifdef NOTAB
1.29      millert   556: int     notabmode(int, int);
1.5       millert   557: #endif /* NOTAB */
1.29      millert   558: int     overwrite(int, int);
                    559: int     set_default_mode(int,int);
1.5       millert   560:
                    561: #ifdef REGEX
                    562: /* re_search.c X */
1.29      millert   563: int     re_forwsearch(int, int);
                    564: int     re_backsearch(int, int);
                    565: int     re_searchagain(int, int);
                    566: int     re_queryrepl(int, int);
                    567: int     setcasefold(int, int);
                    568: int     delmatchlines(int, int);
                    569: int     delnonmatchlines(int, int);
                    570: int     cntmatchlines(int, int);
                    571: int     cntnonmatchlines(int, int);
1.5       millert   572: #endif /* REGEX */
1.1       deraadt   573:
1.30      vincent   574: /* undo.c X */
                    575: int     undo_init(void);
                    576: int     undo_enable(int);
                    577: int     undo_add_boundary(void);
                    578: int     undo_add_insert(LINE *, int, int);
                    579: int     undo_add_delete(LINE *, int, int);
                    580: int     undo_add_change(LINE *, int, int);
                    581: int     undo(void);
                    582:
1.1       deraadt   583: /*
                    584:  * Externals.
                    585:  */
1.5       millert   586: extern BUFFER  *bheadp;
                    587: extern BUFFER  *curbp;
                    588: extern MGWIN   *curwp;
                    589: extern MGWIN   *wheadp;
                    590: extern int      thisflag;
                    591: extern int      lastflag;
                    592: extern int      curgoal;
                    593: extern int      epresf;
                    594: extern int      sgarbf;
                    595: extern int      mode;
                    596: extern int      nrow;
                    597: extern int      ncol;
                    598: extern int      ttrow;
                    599: extern int      ttcol;
                    600: extern int      tttop;
                    601: extern int      ttbot;
                    602: extern int      tthue;
1.30      vincent   603: extern int      undoaction;
1.5       millert   604: extern int      defb_nmodes;
                    605: extern int      defb_flag;
1.17      mickey    606: extern const char cinfo[];
1.5       millert   607: extern char    *keystrings[];
1.25      vincent   608: extern char     pat[NPAT];
1.5       millert   609: #ifndef NO_DPROMPT
                    610: extern char     prompt[];
                    611: #endif /* !NO_DPROMPT */
                    612:
                    613: /*
                    614:  * Globals.
                    615:  */
                    616: int     tceeol;
                    617: int     tcinsl;
                    618: int     tcdell;