summaryrefslogtreecommitdiff
path: root/Doc/Manual/Varargs.html
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2015-12-29 19:10:57 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2015-12-30 22:22:33 +0000
commit3763beb4898b89eb7021fcd4427d2944cd9bc575 (patch)
treea17f3ee4f1cc85e94b9ad39b654acb810c5cb489 /Doc/Manual/Varargs.html
parent4e67d5c7a810048d9024a699a4d5d676f5a69b82 (diff)
downloadswig-3763beb4898b89eb7021fcd4427d2944cd9bc575.tar.gz
Replace tabs with spaces in html docs
wkhtmltopdf is not expanding tabs within <pre> elements to 8 spaces as it should. Workaround the problem by converting all tabs to an appropriate number of spaces.
Diffstat (limited to 'Doc/Manual/Varargs.html')
-rw-r--r--Doc/Manual/Varargs.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Manual/Varargs.html b/Doc/Manual/Varargs.html
index 78689c2fb..1c99804f1 100644
--- a/Doc/Manual/Varargs.html
+++ b/Doc/Manual/Varargs.html
@@ -636,7 +636,7 @@ example. For example:
PyObject *o = PyTuple_GetItem(varargs,i);
if (!PyString_Check(o)) {
PyErr_SetString(PyExc_ValueError,"Expected a string");
- free(argv);
+ free(argv);
return NULL;
}
argv[i] = PyString_AsString(o);