diff options
author | Florent Villard <warly@mandriva.com> | 2001-09-05 16:07:22 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2001-09-05 16:07:22 +0000 |
commit | f40e9497d2f1f37aa7e48be637123dda07ef1dd9 (patch) | |
tree | 9162f7451ac121778e50a239d8a558b7c75f21d7 /logdrake | |
parent | ee2d896af1bbbf52f287d9159faa2668caec572d (diff) | |
download | control-center-f40e9497d2f1f37aa7e48be637123dda07ef1dd9.tar control-center-f40e9497d2f1f37aa7e48be637123dda07ef1dd9.tar.gz control-center-f40e9497d2f1f37aa7e48be637123dda07ef1dd9.tar.bz2 control-center-f40e9497d2f1f37aa7e48be637123dda07ef1dd9.tar.xz control-center-f40e9497d2f1f37aa7e48be637123dda07ef1dd9.zip |
fix regexp for day matching
Diffstat (limited to 'logdrake')
-rwxr-xr-x | logdrake | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -240,7 +240,7 @@ sub parse_file { if ($cal_mode) { my ($year, $month, $day) = $cal->get_date(); - $ey= $months[$month]."\\s{1,2}$day\\s.*$ey\n"; + $ey= $months[$month]."\\s{1,2}$day\\s.*$ey.*\n"; } my @all=catMaybeCompressed ($file); @@ -391,6 +391,9 @@ sub destroy_window { # log # $Log$ +# Revision 1.27 2001/09/05 16:07:22 warly +# fix regexp for day matching +# # Revision 1.26 2001/09/03 20:34:37 yduret # remove ok boutton taht does nothing ! # |