Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
a8de93fc
Commit
a8de93fc
authored
May 13, 2004
by
jouni%heikniemi.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten…
Bug 226411: Fixed the indentation issue mentioned in bug comments but forgotten on previous checkin.
parent
b1317e9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
globals.pl
globals.pl
+5
-5
No files found.
globals.pl
View file @
a8de93fc
...
...
@@ -1409,12 +1409,12 @@ sub DiffStrings {
# that were removed; @new contains ones that got added.
foreach
my
$oldv
(
@old
)
{
foreach
my
$newv
(
@new
)
{
next
if
(
$newv
eq
''
);
if
(
$oldv
eq
$newv
)
{
$newv
=
$oldv
=
''
;
foreach
my
$newv
(
@new
)
{
next
if
(
$newv
eq
''
);
if
(
$oldv
eq
$newv
)
{
$newv
=
$oldv
=
''
;
}
}
}
}
my
$removed
=
join
(
", "
,
grep
{
$_
ne
''
}
@old
);
my
$added
=
join
(
", "
,
grep
{
$_
ne
''
}
@new
);
...
...
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