summaryrefslogtreecommitdiff
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-09-06 21:47:48 +0200
committerBram Moolenaar <Bram@vim.org>2020-09-06 21:47:48 +0200
commit9bd5d879c2ecfbdbb168b090e12f4b89724a302e (patch)
treee9c9a342ba1d31c884d65edcbe864ba35518cf51 /src/globals.h
parentc98cdb3bc970f04f93b4c394b4ec94c2eb5546c3 (diff)
downloadvim-git-9bd5d879c2ecfbdbb168b090e12f4b89724a302e.tar.gz
patch 8.2.1631: test_fails() does not check the context of the line numberv8.2.1631
Problem: test_fails() does not check the context of the line number. Solution: Use another argument to specify the context of the line number.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 64341900e..337c0689f 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -224,6 +224,7 @@ EXTERN int emsg_severe INIT(= FALSE); // use message of next of several
EXTERN int emsg_assert_fails_used INIT(= FALSE);
EXTERN char_u *emsg_assert_fails_msg INIT(= NULL);
EXTERN long emsg_assert_fails_lnum INIT(= 0);
+EXTERN char_u *emsg_assert_fails_context INIT(= NULL);
EXTERN int did_endif INIT(= FALSE); // just had ":endif"
#endif