summaryrefslogtreecommitdiff
path: root/src/if_python.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-14 16:52:17 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-14 16:52:17 +0200
commitcc448b373d580856f92ff7a9e04daf65444b5cd1 (patch)
tree3cb827a7aa56a93acea0a1201d5754ebcca9b808 /src/if_python.c
parentd43848c0dd0603248405bb93364866cd495f0547 (diff)
downloadvim-git-cc448b373d580856f92ff7a9e04daf65444b5cd1.tar.gz
Support completion for ":find". (Nazri Ramliy)
Cleanup white space.
Diffstat (limited to 'src/if_python.c')
-rw-r--r--src/if_python.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_python.c b/src/if_python.c
index 1b0780158..e017b7137 100644
--- a/src/if_python.c
+++ b/src/if_python.c
@@ -1160,8 +1160,8 @@ VimToPython(typval_T *our_tv, int depth, PyObject *lookupDict)
|| (our_tv->v_type == VAR_DICT && our_tv->vval.v_dict != NULL))
{
sprintf(ptrBuf, PRINTF_DECIMAL_LONG_U,
- our_tv->v_type == VAR_LIST ? (long_u)our_tv->vval.v_list
- : (long_u)our_tv->vval.v_dict);
+ our_tv->v_type == VAR_LIST ? (long_u)our_tv->vval.v_list
+ : (long_u)our_tv->vval.v_dict);
result = PyDict_GetItemString(lookupDict, ptrBuf);
if (result != NULL)
{