summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-02-11 15:10:43 +0100
committerBram Moolenaar <Bram@vim.org>2014-02-11 15:10:43 +0100
commit0a36fece9234d423aa5e35a8df1e33b3f79e9ede (patch)
tree8f7e6034c8007a526e2bb0132d21817f183ca73c /src/globals.h
parentc467d9b2745642df836e89c026b2e84d9b227b59 (diff)
updated for version 7.4.171v7.4.171
Problem: Redo does not set v:count and v:count1. Solution: Use a separate buffer for redo, so that we can set the counts when performing redo.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/globals.h b/src/globals.h
index 916f7e31bc..f72915411b 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -979,11 +979,6 @@ EXTERN int RedrawingDisabled INIT(= 0);
EXTERN int readonlymode INIT(= FALSE); /* Set to TRUE for "view" */
EXTERN int recoverymode INIT(= FALSE); /* Set to TRUE for "-r" option */
-EXTERN struct buffheader stuffbuff /* stuff buffer */
-#ifdef DO_INIT
- = {{NULL, {NUL}}, NULL, 0, 0}
-#endif
- ;
EXTERN typebuf_T typebuf /* typeahead buffer */
#ifdef DO_INIT
= {NULL, NULL, 0, 0, 0, 0, 0, 0, 0}