summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/test/syntax_restrictions.t
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-10-13 07:53:24 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-10-13 07:53:24 +0000
commitdbfca0b9ffbacfb1fba06e58e515afd072f925ea (patch)
tree5e14e7a074a6d287f82a7434119c5bf5695549f1 /perl_checker.src/test/syntax_restrictions.t
parentddab763b2fbca2f1c2104dd33577ea694b6daedb (diff)
downloadperl-MDK-Common-dbfca0b9ffbacfb1fba06e58e515afd072f925ea.tar
perl-MDK-Common-dbfca0b9ffbacfb1fba06e58e515afd072f925ea.tar.gz
perl-MDK-Common-dbfca0b9ffbacfb1fba06e58e515afd072f925ea.tar.bz2
perl-MDK-Common-dbfca0b9ffbacfb1fba06e58e515afd072f925ea.tar.xz
perl-MDK-Common-dbfca0b9ffbacfb1fba06e58e515afd072f925ea.zip
handle qx(...) and qx{...} with a warning
Diffstat (limited to 'perl_checker.src/test/syntax_restrictions.t')
-rw-r--r--perl_checker.src/test/syntax_restrictions.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl_checker.src/test/syntax_restrictions.t b/perl_checker.src/test/syntax_restrictions.t
index c1292f7..6641b7b 100644
--- a/perl_checker.src/test/syntax_restrictions.t
+++ b/perl_checker.src/test/syntax_restrictions.t
@@ -12,7 +12,7 @@ q{xxx} don't use q{...}, use q(...) instead
qq{xxx} don't use qq{...}, use qq(...) instead
-qx(xxx) don't use qx{...}, use `...` instead
+qx(xxx) don't use qx(...), use `...` instead
-xxx don't use -xxx, use '-xxx' instead