comparison src/vim9compile.c @ 24116:a028cb6898a2 v8.2.2599

patch 8.2.2599: build failure Commit: https://github.com/vim/vim/commit/edba70703b6eaee3365ddfd82e4ba56ee08486f8 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Mar 13 21:14:18 2021 +0100 patch 8.2.2599: build failure Problem: Build failure. Solution: Add missing change.
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Mar 2021 21:15:04 +0100
parents 26d3c1539bcc
children f4061617c438
comparison
equal deleted inserted replaced
24115:c22788651dcf 24116:a028cb6898a2
2643 while (eval_isnamec(*p)) 2643 while (eval_isnamec(*p))
2644 ++p; 2644 ++p;
2645 cc = *p; 2645 cc = *p;
2646 *p = NUL; 2646 *p = NUL;
2647 2647
2648 idx = find_exported(import->imp_sid, exp_name, &ufunc, &type, cctx); 2648 idx = find_exported(import->imp_sid, exp_name, &ufunc, &type,
2649 cctx, TRUE);
2649 *p = cc; 2650 *p = cc;
2650 p = skipwhite(p); 2651 p = skipwhite(p);
2651 2652
2652 // TODO: what if it is a function? 2653 // TODO: what if it is a function?
2653 if (idx < 0) 2654 if (idx < 0)