File: 27_myspellfixprefix-nodebug.patch

package info (click to toggle)
igerman98 20161207-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,276 kB
  • sloc: perl: 925; makefile: 478; sh: 472; sed: 46
file content (16 lines) | stat: -rw-r--r-- 485 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
From: Roland Rosenfeld <roland@debian.org>
Subject: Comment debug output of myspellfixprefix
Date: Sun, 10 Jan 2021 18:01:06 +0100
Forwarded: not needed

--- a/bin/myspellfixprefix.pl
+++ b/bin/myspellfixprefix.pl
@@ -11,7 +11,7 @@
 while (<STDIN>) {
 	chomp;
 	if (m/^[A-Z].*\/.*[GUV]/) {
-		print STDERR "Capital prefixes will be expanded: $_\n";
+		#print STDERR "Capital prefixes will be expanded: $_\n";
 		
 		($start,$rest) = split("",$_,2);
 		$start =~  tr/A-Z/a-z/;