Thien-Thi Nguyen wrote: > ChangeLog entry: > > * doc/relocatable-maint.texi (Supporting Relocation): > Refill the script example, eliding one sed invocation.
Thanks. I don't feel that eliding the second sed invocation improves clarity, therefore I'm applying only a reformatting: 2007-03-19 Bruno Haible <[EMAIL PROTECTED]> * doc/relocatable-maint.texi: Break long shell script line. Suggested by Thien-Thi Nguyen <[EMAIL PROTECTED]>. --- doc/relocatable-maint.texi 3 Mar 2007 20:39:16 -0000 1.3 +++ doc/relocatable-maint.texi 19 Mar 2007 23:29:20 -0000 @@ -102,8 +102,10 @@ func_find_curr_installdir # determine curr_installdir func_find_prefixes # Relocate the directory variables that we use. - gettext_dir=`echo "$gettext_dir/" | sed -e -"[EMAIL PROTECTED]@}/[EMAIL PROTECTED]@}/%" | sed -e 's,/$,,'` + gettext_dir=` + echo "$gettext_dir/" \ + | sed -e "[EMAIL PROTECTED]@}/[EMAIL PROTECTED]@}/%" \ + | sed -e 's,/$,,'` fi @end example