Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | allow to selectively import from @EXPORT instead of only accepting @EXPORT_OK | Pascal Rigaux | 2003-04-10 | 1 | -1/+1 |
| | |||||
* | simplify handling of variables declared in "if (...) ..." to meet perl's way. | Pascal Rigaux | 2003-04-02 | 1 | -4/+2 |
| | | | | | | | | | | | | | | eg: if (my $i = foo()) { } else { $i; # accessing $i here is allowed } if (my $i = foo()) { } elsif ($i = bar()) { # don't use "my" for $i since it's already in scope } | ||||
* | add getgrent | Pascal Rigaux | 2003-02-14 | 1 | -1/+1 |
| | |||||
* | check use of variables with name _XXX (reserved for unused variables) | Pascal Rigaux | 2003-02-13 | 1 | -1/+4 |
| | |||||
* | add "$." | Pascal Rigaux | 2003-01-29 | 1 | -1/+1 |
| | |||||
* | find, every and any are grep-like (ie. use $_) | Pascal Rigaux | 2003-01-06 | 1 | -1/+2 |
| | |||||
* | basename is not perl standard | Pascal Rigaux | 2003-01-06 | 1 | -1/+1 |
| | |||||
* | - perl_checker: add some more Gtk2 functions | Pascal Rigaux | 2002-12-28 | 1 | -1/+1 |
| | | | | | | - MDK::Common::File: mkdir_p, rm_rf and cp_af returns 1 on success (allowing "eval { mkdir_p() } or ...") | ||||
* | various | Pascal Rigaux | 2002-12-19 | 1 | -4/+4 |
| | |||||
* | - perl_checker: many new features including | Pascal Rigaux | 2002-12-19 | 1 | -3/+3 |
| | | | | | | | | - checking methods being available - checking unused functions - saving parsed file in .perl_checker.cache - new instruction "Basedir .." in .perl_checker (useful for gi/perl-install/standalone/.perl_checker) | ||||
* | new features including checking methods being available and unused functions | Pascal Rigaux | 2002-12-18 | 1 | -0/+447 |