comparison src/popupwin.c @ 17174:23609a6d8cc7 v8.1.1586

patch 8.1.1586: error number used in two places commit https://github.com/vim/vim/commit/b2cda0dd1d9c9e47e21c59b8d40845210ab83f69 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 24 05:06:36 2019 +0200 patch 8.1.1586: error number used in two places Problem: Error number used in two places. Solution: Renumber one. (Ken Takata)
author Bram Moolenaar <Bram@vim.org>
date Mon, 24 Jun 2019 05:15:05 +0200
parents 1d30eb64a7a2
children 8581779aa16f
comparison
equal deleted inserted replaced
17173:b18f5ff85acd 17174:23609a6d8cc7
890 if (tabnr > 0) 890 if (tabnr > 0)
891 { 891 {
892 tp = find_tabpage(tabnr); 892 tp = find_tabpage(tabnr);
893 if (tp == NULL) 893 if (tp == NULL)
894 { 894 {
895 semsg(_("E996: Tabpage not found: %d"), tabnr); 895 semsg(_("E997: Tabpage not found: %d"), tabnr);
896 return NULL; 896 return NULL;
897 } 897 }
898 } 898 }
899 899
900 // Create the window and buffer. 900 // Create the window and buffer.