Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3468a80c
Commit
3468a80c
authored
Sep 23, 2005
by
Robert Reif
Committed by
Alexandre Julliard
Sep 23, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dxerr awk scripts to output single quotes properly.
parent
15edb38a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
errors.awk
dlls/dxerr8/errors.awk
+4
-1
errors.awk
dlls/dxerr9/errors.awk
+4
-1
No files found.
dlls/dxerr8/errors.awk
View file @
3468a80c
...
...
@@ -40,7 +40,10 @@ BEGIN {
i
=
1
len
=
length
(
array
[
word
])
+
1
while
(
i
<
len
)
{
printf
"'%s',"
,
substr
(
array
[
word
],
i
,
1
)
if
(
substr
(
array
[
word
],
i
,
1
)
==
"\'"
)
printf
"'\\'',"
else
printf
"'%s',"
,
substr
(
array
[
word
],
i
,
1
)
i
++
}
if
(
word
<
NF
)
...
...
dlls/dxerr9/errors.awk
View file @
3468a80c
...
...
@@ -40,7 +40,10 @@ BEGIN {
i
=
1
len
=
length
(
array
[
word
])
+
1
while
(
i
<
len
)
{
printf
"'%s',"
,
substr
(
array
[
word
],
i
,
1
)
if
(
substr
(
array
[
word
],
i
,
1
)
==
"\'"
)
printf
"'\\'',"
else
printf
"'%s',"
,
substr
(
array
[
word
],
i
,
1
)
i
++
}
if
(
word
<
NF
)
...
...
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