summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-15 22:40:22 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-15 22:40:22 +0200
commit2ac6e82a4ee06ab01905ba1f279d529de148a911 (patch)
treeedceffca855772b86e4492ef893754d518add85d /src/globals.h
parent5d6844566a5dcb506c6d146f7e46f7e7d09220ae (diff)
patch 8.1.1699: highlight_ga can be local instead of globalv8.1.1699
Problem: Highlight_ga can be local instead of global. Solution: Move highlight_ga into highlight.c. (Yegappan Lakshmanan, closes #4675)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/globals.h b/src/globals.h
index bef5c30bf0..b7a2ec1f36 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -355,9 +355,6 @@ EXTERN char_u hash_removed;
EXTERN int scroll_region INIT(= FALSE); /* term supports scroll region */
EXTERN int t_colors INIT(= 0); /* int value of T_CCO */
-// highlight groups for 'highlight' option
-EXTERN garray_T highlight_ga INIT(= {0 COMMA 0 COMMA sizeof(hl_group_T) COMMA 10 COMMA NULL});
-
#ifdef FEAT_CMDL_COMPL
// Flags to indicate an additional string for highlight name completion.
EXTERN int include_none INIT(= 0); // when 1 include "None"