comparison src/testdir/test_function_lists.vim @ 24570:27033b8bba0e v8.2.2824

patch 8.2.2824: MS-Windows: build failure with MSVC Commit: https://github.com/vim/vim/commit/1bb0da25a6581cd09d6df91f11ce866dc775597b Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 2 19:15:05 2021 +0200 patch 8.2.2824: MS-Windows: build failure with MSVC Problem: MS-Windows: build failure with MSVC. Solution: Adjust the list of distributed files. Add hint about python. Adjust path for reading runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 May 2021 19:30:04 +0200
parents f342bdc79295
children c7aa7acb23bb
comparison
equal deleted inserted replaced
24569:e3ec2ec8841a 24570:27033b8bba0e
53 w! ++ff=unix Xsorted_current_global_functions 53 w! ++ff=unix Xsorted_current_global_functions
54 54
55 " Verify that the ":help functions" list is complete and in ASCII order. 55 " Verify that the ":help functions" list is complete and in ASCII order.
56 56
57 enew! 57 enew!
58 read ../../runtime/doc/eval.txt 58 if filereadable('../../doc/eval.txt')
59 " unpacked MS-Windows zip archive
60 read ../../doc/eval.txt
61 else
62 read ../../runtime/doc/eval.txt
63 endif
59 call search('\*functions\*$') 64 call search('\*functions\*$')
60 call search('^USAGE') 65 call search('^USAGE')
61 1,.d 66 1,.d
62 call search('\*\K\k*()\*$') 67 call search('\*\K\k*()\*$')
63 .,$d 68 .,$d
73 endif 78 endif
74 79
75 " Verify that the ":help function-list" list is complete. 80 " Verify that the ":help function-list" list is complete.
76 81
77 enew! 82 enew!
78 read ../../runtime/doc/usr_41.txt 83 if filereadable('../../doc/usr_41.txt')
84 " unpacked MS-Windows zip archive
85 read ../../doc/usr_41.txt
86 else
87 read ../../runtime/doc/usr_41.txt
88 endif
79 call search('\*function-list\*$') 89 call search('\*function-list\*$')
80 1,.d 90 1,.d
81 call search('^==*$') 91 call search('^==*$')
82 .,$d 92 .,$d
83 v/^\t\S/d 93 v/^\t\S/d