comparison src/ex_docmd.c @ 32489:d6055989fa27 v9.0.1576

patch 9.0.1576: users may not know what to do with an internal error Commit: https://github.com/vim/vim/commit/097c5370ea8abab17ceb0f3bcd74f57b1655c7f7 Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 24 21:02:24 2023 +0100 patch 9.0.1576: users may not know what to do with an internal error Problem: Users may not know what to do with an internal error. Solution: Add a translated message with instructions.
author Bram Moolenaar <Bram@vim.org>
date Wed, 24 May 2023 22:15:06 +0200
parents 87f59a64efab
children bb5458706799
comparison
equal deleted inserted replaced
32488:dab4184aaff9 32489:d6055989fa27
4714 #endif 4714 #endif
4715 break; 4715 break;
4716 case ADDR_NONE: 4716 case ADDR_NONE:
4717 case ADDR_UNSIGNED: 4717 case ADDR_UNSIGNED:
4718 case ADDR_QUICKFIX: 4718 case ADDR_QUICKFIX:
4719 iemsg(_("INTERNAL: Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX")); 4719 iemsg("Cannot use EX_DFLALL with ADDR_NONE, ADDR_UNSIGNED or ADDR_QUICKFIX");
4720 break; 4720 break;
4721 } 4721 }
4722 } 4722 }
4723 4723
4724 4724