diff options
author | James McCoy <jamessan@jamessan.com> | 2021-11-01 11:27:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-01 11:27:42 -0400 |
commit | b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e (patch) | |
tree | d8fc27ffbbb9ece2b15008b09d4b4a6b89d0d20b /src/nvim/highlight.c | |
parent | 961cd83b3b39855b232841f37ded856c8621bd90 (diff) | |
parent | 9e479ea05e00e63ccc985fc8ce4912c709f30111 (diff) | |
download | rneovim-b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e.tar.gz rneovim-b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e.tar.bz2 rneovim-b8eabb37b1d4e267a4db7e639e8cbdec2ed64b8e.zip |
Merge pull request #16131 from jamessan/vim-8.1.0306
Diffstat (limited to 'src/nvim/highlight.c')
-rw-r--r-- | src/nvim/highlight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/highlight.c b/src/nvim/highlight.c index 737e668e81..3050ca02de 100644 --- a/src/nvim/highlight.c +++ b/src/nvim/highlight.c @@ -76,7 +76,7 @@ static int get_attr_entry(HlEntry entry) // compute new ones for all groups. // When called recursively, we are really out of numbers. if (recursive) { - EMSG(_("E424: Too many different highlighting attributes in use")); + emsg(_("E424: Too many different highlighting attributes in use")); return 0; } recursive = true; |