mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.2778: problem restoring 'packpath' in session
Problem: Problem restoring 'packpath' in session. Solution: Let "skiprtp" also apply to 'packpath'.
This commit is contained in:
@@ -4615,7 +4615,8 @@ makeset(FILE *fd, int opt_flags, int local_only)
|
||||
if ((opt_flags & OPT_GLOBAL) && optval_default(p, varp, p_cp))
|
||||
continue;
|
||||
|
||||
if ((opt_flags & OPT_SKIPRTP) && p->var == (char_u *)&p_rtp)
|
||||
if ((opt_flags & OPT_SKIPRTP) && (p->var == (char_u *)&p_rtp
|
||||
|| p->var == (char_u *)&p_pp))
|
||||
continue;
|
||||
|
||||
round = 2;
|
||||
|
Reference in New Issue
Block a user