]> sourceware.org Git - automake.git/commitdiff
* automake.in (quote_cond_val): Turn tabs into \003.
authorTom Tromey <tromey@redhat.com>
Sun, 27 Sep 1998 19:18:52 +0000 (19:18 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 27 Sep 1998 19:18:52 +0000 (19:18 +0000)
(unquote_cond_val): Turn \003 back into tabs.  Fixes test
cond6.test.

ChangeLog
automake.in

index 456f30ce9d518707a1df7268bb89bc2e14fc8a1d..633f08f3f5dc866eeed4ea4d59ff059b2e195994 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Sun Sep 27 20:02:21 1998  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (quote_cond_val): Turn tabs into \003.
+       (unquote_cond_val): Turn \003 back into tabs.  Fixes test
+       cond6.test.
+
        * automake.in (read_am_file): Treat backslash-newline as
        whitespace.  Test parse.test.
 
index 3f7e5c61e6a3f71c78f6a844325023324758dd6e..168ee4c2d8739cbafef302dd55f06da35cc13282 100755 (executable)
@@ -4695,6 +4695,7 @@ sub quote_cond_val
 {
     local ($val) = @_;
     $val =~ s/ /\001/g;
+    $val =~ s/\t/\003/g;
     $val = '\002' if $val eq '';
     return $val;
 }
@@ -4704,6 +4705,7 @@ sub unquote_cond_val
 {
     local ($val) = @_;
     $val =~ s/\001/ /g;
+    $val =~ s/\003/\t/g;
     $val = '' if $val eq '\002';
     return $val;
 }
This page took 0.044787 seconds and 5 git commands to generate.