pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: [pkgsrc-2017Q1] pkgsrc/textproc/mdoclint/files



Module Name:    pkgsrc
Committed By:   bsiegert
Date:           Sat May  6 15:12:53 UTC 2017

Modified Files:
        pkgsrc/textproc/mdoclint/files [pkgsrc-2017Q1]: mdoclint

Log Message:
Pullup ticket #5394 - requested by sevan
textproc/mdoclint: bugfix

Revisions pulled up:
- textproc/mdoclint/files/mdoclint                              1.67

---
   Module Name:    pkgsrc
   Committed By:   wiz
   Date:           Tue May  2 13:53:14 UTC 2017

   Modified Files:
           pkgsrc/textproc/mdoclint/files: mdoclint

   Log Message:
   Bug fix from Ingo Schwarze: also look for empty lines in unfilled blocks.


To generate a diff of this commit:
cvs rdiff -u -r1.64 -r1.64.2.1 pkgsrc/textproc/mdoclint/files/mdoclint

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/mdoclint/files/mdoclint
diff -u pkgsrc/textproc/mdoclint/files/mdoclint:1.64 pkgsrc/textproc/mdoclint/files/mdoclint:1.64.2.1
--- pkgsrc/textproc/mdoclint/files/mdoclint:1.64        Wed Jan 25 09:17:06 2017
+++ pkgsrc/textproc/mdoclint/files/mdoclint     Sat May  6 15:12:53 2017
@@ -1,7 +1,7 @@
 #!@PERL5@
 #
 # $OpenBSD: mdoclint,v 1.48 2016/01/24 20:10:48 schwarze Exp $
-# $NetBSD: mdoclint,v 1.64 2017/01/25 09:17:06 wiz Exp $
+# $NetBSD: mdoclint,v 1.64.2.1 2017/05/06 15:12:53 bsiegert Exp $
 #
 # Copyright (c) 2001-2017 Thomas Klausner
 # All rights reserved.
@@ -610,7 +610,7 @@ sub process_line
                $s->warning("Invalid date found: `$_'") if $opt_d;
        }
 
-       if (/^\.Bd\b.*-literal\b/o) {
+       if (/^\.Bd\b.*-(?:literal|unfilled)\b/o) {
                $s->{inliteral} = 1;
        }
        if ($s->{inliteral} == 1) {



Home | Main Index | Thread Index | Old Index