aboutsummaryrefslogtreecommitdiff
path: root/src/globals.h
diff options
context:
space:
mode:
authoroni-link <knil.ino@gmail.com>2014-04-05 19:28:33 +0200
committerThiago de Arruda <tpadilha84@gmail.com>2014-04-05 20:17:32 -0300
commitf545afaed0304838881930c6a5944f2c6523322e (patch)
treea062e6bbed491bb0e84fe5f1c7e2d8be606024c7 /src/globals.h
parent57cd2d661454cd6686c7d98cafa783ea94495fd5 (diff)
downloadrneovim-f545afaed0304838881930c6a5944f2c6523322e.tar.gz
rneovim-f545afaed0304838881930c6a5944f2c6523322e.tar.bz2
rneovim-f545afaed0304838881930c6a5944f2c6523322e.zip
vim-patch:7.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. https://code.google.com/p/vim/source/detail?r=beb037a6c2708f539d50840637f70eed0811d93c
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 e4b2ba562b..b4bd72fc64 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -753,11 +753,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}