From: Stefano Lattarini Date: Fri, 27 Jul 2012 09:22:08 +0000 (+0200) Subject: [ng] cosmetics: fix some font-lock problems for vim X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cabb73572a7fd4b0291ec44ade3b8e42b803c76;p=thirdparty%2Fautomake.git [ng] cosmetics: fix some font-lock problems for vim * lib/am/parallel-tests.am: Here, by avoiding few occurrences of the single-quote characters in comments. Signed-off-by: Stefano Lattarini --- diff --git a/lib/am/parallel-tests.am b/lib/am/parallel-tests.am index 07609d8f0..36bd015d2 100644 --- a/lib/am/parallel-tests.am +++ b/lib/am/parallel-tests.am @@ -127,7 +127,7 @@ am__list_recheck_tests = $(AWK) '{ \ { \ if (rc < 0) \ { \ -## If we've encountered an I/O error here, there are three possibilities: +## If we have encountered an I/O error here, there are three possibilities: ## ## [1] The '.log' file exists, but the '.trs' does not; in this case, ## we "gracefully" recover by assuming the corresponding test is @@ -139,7 +139,7 @@ am__list_recheck_tests = $(AWK) '{ \ ## ## [3] We have encountered some corner-case problem (e.g., a '.log' or ## '.trs' files somehow made unreadable, or issues with a bad NFS -## connection, or whatever); we don't handle such corner cases. +## connection, or whatever); we do not handle such corner cases. ## if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ @@ -160,7 +160,7 @@ am__list_recheck_tests = $(AWK) '{ \ }; \ if (recheck) \ print $$0; \ -## Don't leak open file descriptors, as this could cause serious +## Do not leak open file descriptors, as this could cause serious ## problems when there are many tests (yes, even on Linux). close ($$0 ".trs"); \ close ($$0 ".log"); \ @@ -173,7 +173,7 @@ am__list_recheck_tests = $(AWK) '{ \ # PASSes will be saved in the '$am_PASS' variable, the count of SKIPs # in the '$am_SKIP' variable, and so on. am__count_test_results = $(AWK) ' \ -## Don't leak open file descriptors, as this could cause serious +## Do not leak open file descriptors, as this could cause serious ## problems when there are many tests (yes, even on Linux). function close_current() \ { \ @@ -227,7 +227,7 @@ END { \ # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ -## Don't leak open file descriptors, as this could cause serious +## Do not leak open file descriptors, as this could cause serious ## problems when there are many tests (yes, even on Linux). function close_current() \ { \ @@ -255,7 +255,7 @@ function rst_section(header) \ BEGIN { exit_status = 0; } \ { \ ## By default, we assume the test log is to be copied in the global log, -## and that its result is simply "RUN" (i.e., we still don't know what +## and that its result is simply "RUN" (i.e., we still do not know what ## it outcome was, but we know that at least it has run). copy_in_global_log = 1; \ global_test_result = "RUN"; \