]> git.donarmstrong.com Git - debbugs.git/commitdiff
Fix typo psuedoheader -> pseudoheader
authorBill Allombert <Bill.Allombert@math.u-bordeaux.fr>
Tue, 5 Nov 2024 17:06:08 +0000 (18:06 +0100)
committerBill Allombert <Bill.Allombert@math.u-bordeaux.fr>
Tue, 5 Nov 2024 17:06:08 +0000 (18:06 +0100)
Debbugs/Config.pm
debian/changelog
scripts/process
t/06_mail_handling.t

index a02072c65b78565895712f8d09ad554a9635f929..a9d79f0a87fd661080582e36ab55829203f5a915 100644 (file)
@@ -614,7 +614,7 @@ set_default(\%config,'package_version_re',
 =item default_package
 
 This is the name of the default package. If set, bugs assigned to
-packages without a maintainer and bugs missing a Package: psuedoheader
+packages without a maintainer and bugs missing a Package: pseudoheader
 will be assigned to this package instead.
 
 Defaults to unset, which is the traditional debbugs behavoir
index 0e3917e238d8eac6df1a39bcc07e9a48669c6731..5ce51910aee60028198c82961698fe4e3d52d2a8 100644 (file)
@@ -1,6 +1,6 @@
 debbugs (2.6.1) unstable; urgency=medium
 
-  * Add support for a Done: psuedoheader (closes: #950133)
+  * Add support for a Done: pseudoheader (closes: #950133)
   * Fix unescaped From (closes: #983847)
   * Actually return message/rfc822 when there is a single message instead
     of mbox (closes: #1009181)
index 6e0a247f958953cbf417afc57c0602887f216638..0bb57591522d9390f79a85dedc80e61c347218ca 100755 (executable)
@@ -222,7 +222,7 @@ if (@bodylines and $bodylines[0] =~ /^-----BEGIN PGP SIGNED/) {
     map { s/^- // } @bodylines;
 }
 
-#psuedoheaders
+#pseudoheaders
 my %pheader;
 my @control_bits;
 my @usertag_bits;
@@ -233,7 +233,7 @@ for my $phline (@bodylines)
     # Fixes #488554
     $phline =~ s/\xef\xbb\xbf//g;
     $phline =~ s/\N{U+FEFF}//g;
-    last if $phline !~ m/^([\w-]+): # psuedoheader
+    last if $phline !~ m/^([\w-]+): # pseudoheader
                         (?:\s|\N{U+00A0})* # zero or more spaces, including
                                             # non-breaking space
                         (\S.*)/x; # pseudoheader value
index 2f8f452d7983c98431b5f258f7867fbe72506a10..0501c937d815f3db14764adff93584289838612b 100644 (file)
@@ -113,7 +113,7 @@ my $status = read_bug(bug=>1);
 ok($status->{subject} eq 'new title','bug 1 retitled');
 ok($status->{severity} eq 'wishlist','bug 1 wishlisted');
 
-# now check to see if we can close a bug using a psuedoheader done
+# now check to see if we can close a bug using a pseudoheader done
 send_message(to => '1-done@bugs.something',
             headers => [To   => 'control@bugs.something',
                         From => 'foo@bugs.something',