Advertisement
troglobit

uemacs/lost-diff

Nov 12th, 2020
1,263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.17 KB | None | 0 0
  1. diff --git a/src/main.c b/src/main.c
  2. index 7070509..09aa36e 100644
  3. --- a/src/main.c
  4. +++ b/src/main.c
  5. @@ -16,7 +16,7 @@ WINDOW        *curwp;                         /* Current window               */
  6.  BUFFER *bheadp;                        /* BUFFER listhead              */
  7.  WINDOW *wheadp;                        /* WINDOW listhead              */
  8.  BUFFER *blistp;                        /* Buffer list BUFFER           */
  9. -short  kbdm[NKBDM] = (KCTLX|')');      /* Macro                        */
  10. +short  kbdm[NKBDM];                    /* Macro                        */
  11.  short  *kbdmip;                        /* Input  for above             */
  12.  short  *kbdmop;                        /* Output for above             */
  13.  char   pat[NPAT];                      /* Pattern                      */
  14. @@ -38,6 +38,7 @@ char  *argv[];
  15.         vtinit();                               /* Virtual terminal.    */
  16.         edinit(bname);                          /* Buffers, windows.    */
  17.         keymapinit();                           /* Symbols, bindings.   */
  18. +       kbdm[NKBDM - 1] = KCTLX | ')';
  19.         if (argc > 1) {
  20.                 update();
  21.                 readin(argv[1]);
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement