Mercurial > vim
changeset 29499:13a57ebccde1 v9.0.0091
patch 9.0.0091: duplicate error number
Commit: https://github.com/vim/vim/commit/34d1773bd4a1880616c5d7ef3a26f7bd69527589
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Jul 27 13:18:14 2022 +0100
patch 9.0.0091: duplicate error number
Problem: Duplicate error number.
Solution: Use unique error number.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 27 Jul 2022 14:30:03 +0200 |
parents | 13d9f3a9061d |
children | 57d7422e07fa |
files | src/errors.h src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/errors.h +++ b/src/errors.h @@ -3312,5 +3312,5 @@ EXTERN char e_cmdline_window_already_ope #endif #ifdef FEAT_PROP_POPUP EXTERN char e_cannot_use_negative_id_after_adding_textprop_with_text[] - INIT(= N_("E1291: Cannot use a negative id after adding a textprop with text")); + INIT(= N_("E1293: Cannot use a negative id after adding a textprop with text")); #endif