summaryrefslogtreecommitdiffstats
path: root/src/message.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-05-22 20:35:17 +0200
committerBram Moolenaar <Bram@vim.org>2018-05-22 20:35:17 +0200
commit0b6d911e5de1a1c10a23d4c2ee1b0275c474a2dd (patch)
tree3d33047a64f47e30852f5d6f187f316d12b3f55b /src/message.c
parentb4518563c73460150344a57879bf5b22cb8b1c77 (diff)
patch 8.1.0020: cannot tell whether a register is executing or recordingv8.1.0020
Problem: Cannot tell whether a register is being used for executing or recording. Solution: Add reg_executing() and reg_recording(). (Hirohito Higashi, closes #2745) Rename the global variables for consistency. Store the register name in reg_executing.
Diffstat (limited to 'src/message.c')
-rw-r--r--src/message.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/message.c b/src/message.c
index f9ae0e91f0..9384aa6233 100644
--- a/src/message.c
+++ b/src/message.c
@@ -1025,7 +1025,7 @@ wait_return(int redraw)
int oldState;
int tmpState;
int had_got_int;
- int save_Recording;
+ int save_reg_recording;
FILE *save_scriptout;
if (redraw == TRUE)
@@ -1103,16 +1103,16 @@ wait_return(int redraw)
/* Temporarily disable Recording. If Recording is active, the
* character will be recorded later, since it will be added to the
* typebuf after the loop */
- save_Recording = Recording;
+ save_reg_recording = reg_recording;
save_scriptout = scriptout;
- Recording = FALSE;
+ reg_recording = 0;
scriptout = NULL;
c = safe_vgetc();
if (had_got_int && !global_busy)
got_int = FALSE;
--no_mapping;
--allow_keys;
- Recording = save_Recording;
+ reg_recording = save_reg_recording;
scriptout = save_scriptout;
#ifdef FEAT_CLIPBOARD