comparison src/popupwin.c @ 17318:a7d1cd2ea886 v8.1.1658

patch 8.1.1658: debug statements included in patch commit https://github.com/vim/vim/commit/3b849af90a691f2a9999222b0e69bd161bebc5e2 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 10 16:15:04 2019 +0200 patch 8.1.1658: debug statements included in patch Problem: Debug statements included in patch. Solution: Remove the debug statements.
author Bram Moolenaar <Bram@vim.org>
date Wed, 10 Jul 2019 16:30:06 +0200
parents 8813e1626e0a
children 33dccaafb214
comparison
equal deleted inserted replaced
17317:54815f69e8c4 17318:a7d1cd2ea886
1435 || mouse_col < wp->w_popup_mouse_mincol 1435 || mouse_col < wp->w_popup_mouse_mincol
1436 || mouse_col > wp->w_popup_mouse_maxcol)) 1436 || mouse_col > wp->w_popup_mouse_maxcol))
1437 { 1437 {
1438 typval_T res; 1438 typval_T res;
1439 1439
1440 ch_log(NULL, "closing popup %d", wp->w_id);
1441 res.v_type = VAR_NUMBER; 1440 res.v_type = VAR_NUMBER;
1442 res.vval.v_number = -2; 1441 res.vval.v_number = -2;
1443 // Careful: this makes "wp" invalid. 1442 // Careful: this makes "wp" invalid.
1444 popup_close_and_callback(wp, &res); 1443 popup_close_and_callback(wp, &res);
1445 } 1444 }