summaryrefslogtreecommitdiff
path: root/cesar/ce
diff options
context:
space:
mode:
authordufour2010-02-16 14:03:18 +0000
committerdufour2010-02-16 14:03:18 +0000
commita60a9dee746e960d5a66301046ef566600921415 (patch)
tree8fcf7237a7c458e7ec8fff241e48a35587ca1ec8 /cesar/ce
parent1f4935df280b92cf759b97501e9b2b1a20657988 (diff)
cesar/ce/rx/bl: support matlab comments in import coefficients script
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@6728 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/ce')
-rw-r--r--cesar/ce/rx/bitloading/src/import_poly_coeff.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/cesar/ce/rx/bitloading/src/import_poly_coeff.pl b/cesar/ce/rx/bitloading/src/import_poly_coeff.pl
index fdc989d19a..729ac6660b 100644
--- a/cesar/ce/rx/bitloading/src/import_poly_coeff.pl
+++ b/cesar/ce/rx/bitloading/src/import_poly_coeff.pl
@@ -96,6 +96,7 @@ while (<>)
s/\s+$//;
/^$/ and next;
/^#/ and next;
+ /^%/ and next;
# From previous continued line.
defined $prev and $_ = $prev . ' ' . $_;
undef $prev;