summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-20 19:07:00 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-20 19:07:00 +0100
commitfe72d08400d9064b3f959f1f62f279527e64835a (patch)
treeddd8190964a58001aaa585c0d942537dae0c08f9
parent95a9dd1efc5ae3221865f4970053a5708557e682 (diff)
patch 8.2.0025: repeated word in commentv8.2.0025
Problem: Repeated word in comment. Solution: Remove one. (Rene Nyffenegger, closes #5384)
-rw-r--r--src/structs.h2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/structs.h b/src/structs.h
index 71b5c6141f..a543d3b072 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -68,7 +68,7 @@ typedef struct VimMenu vimmenu_T;
#endif
/*
- * SCript ConteXt (SCTX): identifies a script script line.
+ * SCript ConteXt (SCTX): identifies a script line.
* When sourcing a script "sc_lnum" is zero, "sourcing_lnum" is the current
* line number. When executing a user function "sc_lnum" is the line where the
* function was defined, "sourcing_lnum" is the line number inside the
diff --git a/src/version.c b/src/version.c
index c7da9e057c..67b4c4b3ae 100644
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 25,
+/**/
24,
/**/
23,