Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Sympa
Commits
e6c23128
Commit
e6c23128
authored
May 20, 2022
by
IKEDA Soji
Browse files
support/correct_msgid: '@' has not been escaped.
parent
7ddadcdc
Changes
1
Hide whitespace changes
Inline
Side-by-side
support/correct_msgid
View file @
e6c23128
...
...
@@ -64,8 +64,8 @@ while (<$en_US>) {
}
next
if
"
\"\"
"
eq
$str
or
$id
eq
$str
;
my
$id_s
=
eval
$id
;
my
$str_s
=
eval
$str
;
my
$id_s
=
eval
(
$id
=~
s/\@/\\\@/gr
)
;
my
$str_s
=
eval
(
$str
=~
s/\@/\\\@/gr
)
;
my
@locations
=
map
{
my
$l
=
$_
;
...
...
Write
Preview
Supports
Markdown
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