mirror of https://github.com/GNOME/gimp.git
pdb: replace \1 \2 \3 by $1 $2 $2 as suggested by perl warning
This commit is contained in:
parent
00f6973b3c
commit
4fbaff92a1
|
@ -128,8 +128,8 @@ foreach $file (@groups) {
|
|||
# Squash whitespace into just single spaces between words.
|
||||
# Single new lines are considered as normal spaces, but n > 1 newlines are considered (n - 1) newlines.
|
||||
# The sligthly complicated suite of regexp is so that \n\s+\n is still considered a double newline.
|
||||
sub trimspace { for (${$_[0]}) { s/(\S)[\ \t\r\f]*\n[\ \t\r\f]*(\S)/\1 \2/g; s/[\ \t\r\f]+/ /gs;
|
||||
s/\n(([\ \t\r\f]*\n)+)/\1/g; s/[\ \t\r\f]*\n[\ \t\r\f]/\n/g ; s/^\s+//; s/\s+$//; } }
|
||||
sub trimspace { for (${$_[0]}) { s/(\S)[\ \t\r\f]*\n[\ \t\r\f]*(\S)/$1 $2/g; s/[\ \t\r\f]+/ /gs;
|
||||
s/\n(([\ \t\r\f]*\n)+)/$1/g; s/[\ \t\r\f]*\n[\ \t\r\f]/\n/g ; s/^\s+//; s/\s+$//; } }
|
||||
|
||||
# Trim spaces and escape quotes C-style
|
||||
sub nicetext {
|
||||
|
|
Loading…
Reference in New Issue