                                                                                                                                                                                                                                                               
Delivered-To: richih.mailinglist+debian.org@gmail.com
Received: by 10.27.219.143 with SMTP id s137csp1413780wlg;
        Sat, 5 Dec 2015 21:24:45 -0800 (PST)
X-Received: by 10.194.9.169 with SMTP id a9mr25752311wjb.60.1449379485498;
        Sat, 05 Dec 2015 21:24:45 -0800 (PST)
Return-Path: <pabs3@bonedaddy.net>
Received: from master.debian.org (master.debian.org. [2001:41b8:202:deb:216:36ff:fe40:4001])
        by mx.google.com with ESMTPS id v12si22073258wjr.84.2015.12.05.21.24.45
        for <richih.mailinglist+debian.org@gmail.com>
        (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
        Sat, 05 Dec 2015 21:24:45 -0800 (PST)
Received-SPF: softfail (google.com: domain of transitioning pabs3@bonedaddy.net does not designate 2001:41b8:202:deb:216:36ff:fe40:4001 as permitted sender) client-ip=2001:41b8:202:deb:216:36ff:fe40:4001;
Authentication-Results: mx.google.com;
       spf=softfail (google.com: domain of transitioning pabs3@bonedaddy.net does not designate 2001:41b8:202:deb:216:36ff:fe40:4001 as permitted sender) smtp.mailfrom=pabs3@bonedaddy.net
Received: from localhost ([::1] helo=chianamo.localdomain)
	by master.debian.org with esmtp (Exim 4.84)
	(envelope-from <pabs3@bonedaddy.net>)
	id 1a5RoS-0000DE-Ot; Sun, 06 Dec 2015 05:24:45 +0000
From: Paul Wise <pabs3@bonedaddy.net>
To: Joey Hess <joeyh@joeyh.name>,
	Richard Hartmann <richih@debian.org>
Cc: Paul Wise <pabs3@bonedaddy.net>
Subject: [myrepos] [PATCH 4/4] Fix typos
Date: Sun,  6 Dec 2015 13:24:19 +0800
Message-Id: <1449379459-3296-4-git-send-email-pabs3@bonedaddy.net>
X-Mailer: git-send-email 2.6.2
In-Reply-To: <1449379459-3296-1-git-send-email-pabs3@bonedaddy.net>
References: <1449379459-3296-1-git-send-email-pabs3@bonedaddy.net>

Suggested-by: codespell --quiet-level=3
./mr:762: continous  ==> continuous
./mr:768: continous  ==> continuous
./debian/changelog:260: supresses  ==> suppresses
./debian/changelog:590: runing  ==> running
./debian/changelog:647: enviroment  ==> environment
---
 debian/changelog |  6 +++---
 mr               | 12 ++++++------
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 243a138..95cc2f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -257,7 +257,7 @@ mr (1.04) unstable; urgency=low
 mr (1.03) unstable; urgency=low
 
   * Added git-subtree library. Thanks, Svend Sorensen
-  * Now --quiet supresses all output from commands run, as well
+  * Now --quiet suppresses all output from commands run, as well
     as from mr, unless a command fails. Closes: #529296
 
  -- Joey Hess <joeyh@debian.org>  Sun, 01 May 2011 19:09:35 -0400
@@ -587,7 +587,7 @@ mr (0.15) unstable; urgency=low
     Closes: #452467
 
   [ Joey Hess ]
-  * Add a warning about runing too many jobs at a time.
+  * Add a warning about running too many jobs at a time.
 
  -- Joey Hess <joeyh@debian.org>  Sun, 25 Nov 2007 13:13:47 -0500
 
@@ -644,7 +644,7 @@ mr (0.9) unstable; urgency=low
 
     The old style unsplit actions are still supported, and are what most
     mrconfig files will still use; this change is fully backwards compatible.
-  * Changed some things in the enviroment for the register action.
+  * Changed some things in the environment for the register action.
     It's now run in the directory that the user specifies, and MR_REPO
     is set to contain the basename of the directory that the checkout
     command should check out. These changes should be backware compatible
diff --git a/mr b/mr
index c8300d0..89339ab 100755
--- a/mr
+++ b/mr
@@ -759,20 +759,20 @@ sub terminal_friendly_spawn {
 	my $quiet = shift;
 	my $minimal = shift;
 	my $jobs = shift;
-	my $continous = !$quiet && $minimal && 1 == $jobs;
+	my $continuous = !$quiet && $minimal && 1 == $jobs;
 	my $output = "";
-	my $continous_output = 0;
+	my $continuous_output = 0;
 	if ($terminal) {
 		my $pty = IO::Pty::Easy->new;
 		$pty->spawn($sh);
-		if ($continous) {
+		if ($continuous) {
 			$| = 1;
 			print "$actionmsg$erase_line\r" if $actionmsg;
 			while ($pty->is_active) {
 				my $data = $pty->getline();
 				if (defined $data && $data ne '') {
-					print "\n" if ($actionmsg && !$continous_output);
-					$continous_output = 1;
+					print "\n" if ($actionmsg && !$continuous_output);
+					$continuous_output = 1;
 					print $data;
 				}
 			}
@@ -797,7 +797,7 @@ sub terminal_friendly_spawn {
 		print "$actionmsg\n" if $actionmsg;
 		print $output;
 	}
-	return ($ret, ($output || $continous_output) ? 1 : 0);
+	return ($ret, ($output || $continuous_output) ? 1 : 0);
 }
 
 sub action {
-- 
2.6.2

