summaryrefslogtreecommitdiff
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-06-01 21:56:33 +0000
committerBram Moolenaar <Bram@vim.org>2005-06-01 21:56:33 +0000
commit6c0b44b5bf930129a57ff71b1d0c7ffcbc6b0bf5 (patch)
tree29256bed4971371c9ee12aa973b511714b98b3fb /src/edit.c
parentd6f676daaf88bd4768cd715c0ce88531f599e609 (diff)
downloadvim-git-6c0b44b5bf930129a57ff71b1d0c7ffcbc6b0bf5.tar.gz
updated for version 7.0078
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/edit.c b/src/edit.c
index bce0d83af..f4682c083 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -198,10 +198,10 @@ static int can_cindent; /* may do cindenting on this line */
static int old_indent = 0; /* for ^^D command in insert mode */
#ifdef FEAT_RIGHTLEFT
-int revins_on; /* reverse insert mode on */
-int revins_chars; /* how much to skip after edit */
-int revins_legal; /* was the last char 'legal'? */
-int revins_scol; /* start column of revins session */
+static int revins_on; /* reverse insert mode on */
+static int revins_chars; /* how much to skip after edit */
+static int revins_legal; /* was the last char 'legal'? */
+static int revins_scol; /* start column of revins session */
#endif
#if defined(FEAT_MBYTE) && defined(MACOS_CLASSIC)
@@ -5432,9 +5432,9 @@ echeck_abbr(c)
* characters will be left on the stack above the newly inserted character.
*/
-char_u *replace_stack = NULL;
-long replace_stack_nr = 0; /* next entry in replace stack */
-long replace_stack_len = 0; /* max. number of entries */
+static char_u *replace_stack = NULL;
+static long replace_stack_nr = 0; /* next entry in replace stack */
+static long replace_stack_len = 0; /* max. number of entries */
void
replace_push(c)