commit | b2cda0dd1d9c9e47e21c59b8d40845210ab83f69 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Jun 24 05:06:36 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Jun 24 05:06:36 2019 +0200 |
tree | a9c714dcf9e9ea291d7b1a686aeda4299301b46f | |
parent | e7eb92708ec2092a2fc11e78703b5dcf83844412 [diff] [blame] |
patch 8.1.1586: error number used in two places Problem: Error number used in two places. Solution: Renumber one. (Ken Takata)
diff --git a/src/popupwin.c b/src/popupwin.c index f6da71d..16ec1a2 100644 --- a/src/popupwin.c +++ b/src/popupwin.c
@@ -892,7 +892,7 @@ tp = find_tabpage(tabnr); if (tp == NULL) { - semsg(_("E996: Tabpage not found: %d"), tabnr); + semsg(_("E997: Tabpage not found: %d"), tabnr); return NULL; } }