Mercurial > vim
comparison src/highlight.c @ 26915:3631d2deb36c v8.2.3986
patch 8.2.3986: error messages are spread out
Commit: https://github.com/vim/vim/commit/b09feaa86ecc53b9b953710082496951776dc5c6
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jan 2 20:20:45 2022 +0000
patch 8.2.3986: error messages are spread out
Problem: Error messages are spread out.
Solution: Move more error messages to errors.h.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 02 Jan 2022 21:30:04 +0100 |
parents | d4e61d61afd9 |
children | b34ddbca305c |
comparison
equal
deleted
inserted
replaced
26914:21f9376239a4 | 26915:3631d2deb36c |
---|---|
1051 { | 1051 { |
1052 if (cterm_normal_ul_color > 0) | 1052 if (cterm_normal_ul_color > 0) |
1053 color = cterm_normal_ul_color - 1; | 1053 color = cterm_normal_ul_color - 1; |
1054 else | 1054 else |
1055 { | 1055 { |
1056 emsg(_("E453: UL color unknown")); | 1056 emsg(_(e_ul_color_unknown)); |
1057 return FALSE; | 1057 return FALSE; |
1058 } | 1058 } |
1059 } | 1059 } |
1060 else | 1060 else |
1061 { | 1061 { |