summaryrefslogtreecommitdiffstats
path: root/src/if_python3.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-02-26 13:43:51 +0100
committerBram Moolenaar <Bram@vim.org>2020-02-26 13:43:51 +0100
commitd672dde584effd55702ee15efec4cb2a8c77bf85 (patch)
tree742fb3cd5f535e1571827c81060572ce735ef96d /src/if_python3.c
parentbc93cebb692f47488d66f078d1728031e9be35e7 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_python3.c b/src/if_python3.c
index 8c22514b74..6e4b81acd0 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;