Indent ChangeLog contents [ci skip]
Separate each entries more obviously as `page-delimiter' works fine.
This commit is contained in:
parent
a2e215fea4
commit
b68fc08092
@ -639,19 +639,21 @@ class VCS
|
|||||||
w.print "-*- coding: utf-8 -*-\n\n"
|
w.print "-*- coding: utf-8 -*-\n\n"
|
||||||
cmd_pipe(env, cmd, chdir: @srcdir) do |r|
|
cmd_pipe(env, cmd, chdir: @srcdir) do |r|
|
||||||
while s = r.gets("\ncommit ")
|
while s = r.gets("\ncommit ")
|
||||||
|
h, s = s.split(/^$/, 2)
|
||||||
|
h.gsub!(/^(?:Author|Date): /, ' \&')
|
||||||
if s.sub!(/\nNotes \(log-fix\):\n((?: +.*\n)+)/, '')
|
if s.sub!(/\nNotes \(log-fix\):\n((?: +.*\n)+)/, '')
|
||||||
fix = $1
|
fix = $1
|
||||||
h, s = s.split(/^$/, 2)
|
|
||||||
s = s.lines
|
s = s.lines
|
||||||
fix.each_line do |x|
|
fix.each_line do |x|
|
||||||
if %r[^ +(\d+)s/(.+)/(.*)/] =~ x
|
if %r[^ +(\d+)s/(.+)/(.*)/] =~ x
|
||||||
s[$1.to_i][$2] = $3
|
s[$1.to_i][$2] = $3
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
s = [h, s.join('')].join('')
|
s = s.join('')
|
||||||
end
|
end
|
||||||
s.gsub!(/ +\n/, "\n")
|
s.gsub!(/ +\n/, "\n")
|
||||||
w.print s
|
s.sub!(/^Notes:/, ' \&')
|
||||||
|
w.print h, s
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user