Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Christian Butz
VTK
Commits
c9d9f72b
Commit
c9d9f72b
authored
Jun 17, 2010
by
David Gobbi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG: need to quote backslashes that occur in method signatures
parent
cc2bc350
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
Wrapping/vtkWrapPython.c
Wrapping/vtkWrapPython.c
+1
-1
No files found.
Wrapping/vtkWrapPython.c
View file @
c9d9f72b
...
...
@@ -1023,7 +1023,7 @@ const char *vtkWrapPython_FormatSignature(
while
(
k
-
j
<
width
&&
cp
[
i
]
!=
'\n'
&&
cp
[
i
]
!=
'\0'
)
{
/* escape quotes */
if
(
cp
[
i
]
==
'\"'
||
cp
[
i
]
==
'\''
)
if
(
cp
[
i
]
==
'\"'
||
cp
[
i
]
==
'\''
||
cp
[
i
]
==
'\\'
)
{
text
[
k
++
]
=
'\\'
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment