From 8a07be23e3cde94551dc4a05fbb6c46f4c3e92b2 Mon Sep 17 00:00:00 2001 From: Rob Swindell <rob@synchro.net> Date: Mon, 12 Oct 2020 18:19:07 -0700 Subject: [PATCH] Fix more out-of-sync values (MSK_*) with uifc.h --- exec/load/uifcdefs.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/exec/load/uifcdefs.js b/exec/load/uifcdefs.js index 7c17873896..c49a7e1a5e 100644 --- a/exec/load/uifcdefs.js +++ b/exec/load/uifcdefs.js @@ -45,9 +45,10 @@ const MSK_ON = 0xf0000000; const MSK_OFF = 0x0fffffff; const MSK_INS = 0x10000000; const MSK_DEL = 0x20000000; -const MSK_GET = 0x30000000; -const MSK_PUT = 0x40000000; -const MSK_EDIT = 0x50000000; +const MSK_COPY = 0x30000000; +const MSK_CUT = 0x40000000; +const MSK_PASTE = 0x50000000; +const MSK_EDIT = 0x60000000; /* Dont forget, negative return values are used for extended keys (if WIN_EXTKEYS used)! */ const MAX_OPLN = 75; /* Maximum length of each option per menu call */ const MAX_BUFS = 7; /* Maximum number of screen buffers to save */ -- GitLab