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
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
Ivan Ivlev
bugzilla
Commits
1f0e11b9
Commit
1f0e11b9
authored
Feb 08, 2008
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 415539: Remove trailing whitespaces from bugmail
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
parent
867c349d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
BugMail.pm
Bugzilla/BugMail.pm
+5
-1
No files found.
Bugzilla/BugMail.pm
View file @
1f0e11b9
...
...
@@ -86,7 +86,11 @@ sub multiline_sprintf {
# Make any single undef item into ''
@line
=
map
{
defined
$_
?
$_
:
''
}
@line
;
# And append a formatted line
$formatted
.=
sprintf
(
"$format\n"
,
@line
);
$formatted
.=
sprintf
(
$format
,
@line
);
# Remove trailing spaces, or they become lots of =20's in
# quoted-printable emails.
$formatted
=~
s/\s+$//
;
$formatted
.=
"\n"
;
}
return
$formatted
;
}
...
...
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