]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
[ng] cosmetics: fix some font-lock problems for vim
authorStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 27 Jul 2012 09:22:08 +0000 (11:22 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Fri, 27 Jul 2012 09:25:42 +0000 (11:25 +0200)
* lib/am/parallel-tests.am: Here, by avoiding few occurrences of
the single-quote characters in comments.

Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
lib/am/parallel-tests.am

index 07609d8f08a08e576fc8454e47b4b09335d67025..36bd015d264208e85ff99821f6ad729db9873c74 100644 (file)
@@ -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"; \