diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-26 13:43:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-26 13:43:51 +0100 |
commit | d672dde584effd55702ee15efec4cb2a8c77bf85 (patch) | |
tree | 742fb3cd5f535e1571827c81060572ce735ef96d /src/if_python3.c | |
parent | bc93cebb692f47488d66f078d1728031e9be35e7 (diff) | |
download | vim-git-d672dde584effd55702ee15efec4cb2a8c77bf85.tar.gz |
patch 8.2.0319: file missing in distribution, comments outdatedv8.2.0319
Problem: File missing in distribution, comments outdated.
Solution: Correct path of README file. Update comments.
Diffstat (limited to 'src/if_python3.c')
-rw-r--r-- | src/if_python3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c index 8c22514b7..6e4b81acd 100644 --- a/src/if_python3.c +++ b/src/if_python3.c @@ -1641,7 +1641,7 @@ LineToString(const char *str) { PyObject *result; Py_ssize_t len = strlen(str); - char *tmp,*p; + char *tmp, *p; tmp = alloc(len + 1); p = tmp; |