comparison src/ex_docmd.c @ 21592:7d721e95dc51 v8.2.1346

patch 8.2.1346: small build fails Commit: https://github.com/vim/vim/commit/491799be5084dde7aa3367462f306e7b71dbc4a5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 1 19:23:43 2020 +0200 patch 8.2.1346: small build fails Problem: Small build fails. Solution: Add #ifdef.
author Bram Moolenaar <Bram@vim.org>
date Sat, 01 Aug 2020 19:30:03 +0200
parents d0c76ce48326
children 5daca8504c63
comparison
equal deleted inserted replaced
21591:37e648dc29fe 21592:7d721e95dc51
7274 static void 7274 static void
7275 ex_copymove(exarg_T *eap) 7275 ex_copymove(exarg_T *eap)
7276 { 7276 {
7277 long n; 7277 long n;
7278 7278
7279 #ifdef FEAT_EVAL
7279 if (not_in_vim9(eap) == FAIL) 7280 if (not_in_vim9(eap) == FAIL)
7280 return; 7281 return;
7281 7282 #endif
7282 n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE, FALSE, 1); 7283 n = get_address(eap, &eap->arg, eap->addr_type, FALSE, FALSE, FALSE, 1);
7283 if (eap->arg == NULL) // error detected 7284 if (eap->arg == NULL) // error detected
7284 { 7285 {
7285 eap->nextcmd = NULL; 7286 eap->nextcmd = NULL;
7286 return; 7287 return;