Index: ChangeLog from Akim Demaille * config/announce-gen (print_changelog_deltas): Neutralize "<#" as "<\#" to avoid magic from Gnus when posting parts of this script. Index: config/announce-gen =================================================================== RCS file: /cvsroot/bison/bison/config/announce-gen,v retrieving revision 1.1 diff -u -u -r1.1 announce-gen --- config/announce-gen 25 Aug 2003 18:47:36 -0000 1.1 +++ config/announce-gen 26 Aug 2003 07:11:45 -0000 @@ -226,11 +226,13 @@ $fail and exit 1; + # The markup is escaped as <\# so that when this script is sent by + # mail (or part of a diff), Gnus is not triggered. print < +<\#secure method=pgpmime mode=sign> FIXME: put comments here @@ -263,8 +265,10 @@ print "\nHere are the MD5 and SHA1 signatures:\n"; print "\n"; - print "<#part type=text/plain filename=\"$tmp\" disposition=inline>\n" - . "<#/part>\n"; + # The markup is escaped as <\# so that when this script is sent by + # mail (or part of a diff), Gnus is not triggered. + print "<\#part type=text/plain filename=\"$tmp\" disposition=inline>\n" + . "<\#/part>\n"; open OUT, '>', $tmp or die "$ME: $tmp: cannot open for writing: $!\n";