comparison src/globals.h @ 5649:beb037a6c270 v7.4.171

updated for version 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.
author Bram Moolenaar <bram@vim.org>
date Tue, 11 Feb 2014 15:10:43 +0100
parents 9c777e2c7024
children 4d12112c5efa
comparison
equal deleted inserted replaced
5648:e2140f8c3b20 5649:beb037a6c270
977 EXTERN int RedrawingDisabled INIT(= 0); 977 EXTERN int RedrawingDisabled INIT(= 0);
978 978
979 EXTERN int readonlymode INIT(= FALSE); /* Set to TRUE for "view" */ 979 EXTERN int readonlymode INIT(= FALSE); /* Set to TRUE for "view" */
980 EXTERN int recoverymode INIT(= FALSE); /* Set to TRUE for "-r" option */ 980 EXTERN int recoverymode INIT(= FALSE); /* Set to TRUE for "-r" option */
981 981
982 EXTERN struct buffheader stuffbuff /* stuff buffer */
983 #ifdef DO_INIT
984 = {{NULL, {NUL}}, NULL, 0, 0}
985 #endif
986 ;
987 EXTERN typebuf_T typebuf /* typeahead buffer */ 982 EXTERN typebuf_T typebuf /* typeahead buffer */
988 #ifdef DO_INIT 983 #ifdef DO_INIT
989 = {NULL, NULL, 0, 0, 0, 0, 0, 0, 0} 984 = {NULL, NULL, 0, 0, 0, 0, 0, 0, 0}
990 #endif 985 #endif
991 ; 986 ;