mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	vim-patch:8.0.0326
Problem:    Packadd test uses wrong directory name.
Solution:   Use the variable name value. (Hirohito Higashi)
24f8f543d4
			
			
This commit is contained in:
		| @@ -626,7 +626,7 @@ static const int included_patches[] = { | |||||||
|   // 329, |   // 329, | ||||||
|   // 328, |   // 328, | ||||||
|   // 327, |   // 327, | ||||||
|   // 326, |   326, | ||||||
|   325, |   325, | ||||||
|   // 324, |   // 324, | ||||||
|   // 323, |   // 323, | ||||||
|   | |||||||
| @@ -89,7 +89,7 @@ describe('packadd', function() | |||||||
|         endif |         endif | ||||||
|         let top2_dir = s:topdir . '/Xdir2' |         let top2_dir = s:topdir . '/Xdir2' | ||||||
|         let real_dir = s:topdir . '/Xsym' |         let real_dir = s:topdir . '/Xsym' | ||||||
|         silent !ln -s real_dir top2_dir |         exec "silent! !ln -s" real_dir top2_dir | ||||||
|         let &rtp = top2_dir . ',' . top2_dir . '/after' |         let &rtp = top2_dir . ',' . top2_dir . '/after' | ||||||
|         let &packpath = &rtp |         let &packpath = &rtp | ||||||
|  |  | ||||||
| @@ -114,7 +114,7 @@ describe('packadd', function() | |||||||
|  |  | ||||||
|         set rtp& |         set rtp& | ||||||
|         let rtp = &rtp |         let rtp = &rtp | ||||||
|         silent !rm top2_dir |         exec "silent !rm" top2_dir | ||||||
|       endfunc |       endfunc | ||||||
|  |  | ||||||
|       func Test_packloadall() |       func Test_packloadall() | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 James McCoy
					James McCoy