diff options
-rw-r--r-- | release/doc/share/misc/man2hwnotes.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/release/doc/share/misc/man2hwnotes.pl b/release/doc/share/misc/man2hwnotes.pl index 8670693..899bc1c 100644 --- a/release/doc/share/misc/man2hwnotes.pl +++ b/release/doc/share/misc/man2hwnotes.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -w # Emacs should use -*- cperl -*- mode # -# Copyright (c) 2003-2004 Simon L. Nielsen <simon@FreeBSD.org> +# Copyright (c) 2003-2005 Simon L. Nielsen <simon@FreeBSD.org> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -223,6 +223,9 @@ sub parse { add_listitem(\%mdocvars); } + # Remove quotes, if any. + $txt =~ s/"(.*)"/$1/; + if ($mdocvars{listtype} eq "column") { # Ignore first item when it is likely to be a # header. |