From 7f8989dd8a627af2185df381195351a913f3777f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 12 Mar 2016 22:11:39 +0100 Subject: patch 7.4.1552 Problem: ":colorscheme" does not use 'packpath'. Solution: Also use in "start" and "opt" directories in 'packpath'. --- src/if_py_both.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/if_py_both.h') diff --git a/src/if_py_both.h b/src/if_py_both.h index 6ae3fe7f6..e916e6aa8 100644 --- a/src/if_py_both.h +++ b/src/if_py_both.h @@ -1061,7 +1061,7 @@ VimForeachRTP(PyObject *self UNUSED, PyObject *callable) data.callable = callable; data.result = NULL; - do_in_runtimepath(NULL, FALSE, &map_rtp_callback, &data); + do_in_runtimepath(NULL, 0, &map_rtp_callback, &data); if (data.result == NULL) { @@ -1150,7 +1150,7 @@ Vim_GetPaths(PyObject *self UNUSED) if (!(ret = PyList_New(0))) return NULL; - do_in_runtimepath(NULL, FALSE, &map_finder_callback, ret); + do_in_runtimepath(NULL, 0, &map_finder_callback, ret); if (PyErr_Occurred()) { -- cgit v1.2.1