1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00

add missing \ to eval expr

This commit is contained in:
Andrey A. Chernov 1998-09-09 21:24:02 +00:00
parent 1fb2e09300
commit 8061cf4ed8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=13076

View File

@ -0,0 +1,19 @@
*** IniConf.pm.bak Fri Jul 11 09:39:59 1997
--- IniConf.pm Thu Sep 10 01:15:26 1998
***************
*** 203,209 ****
\$SIG{$sig} = 'IGNORE';
\$${class}::instance[$instnum]->ReadConfig;
if (\$oldhandler[$instnum] && \$oldhandler[$instnum] ne 'IGNORE') {
! eval '&$oldhandler[$instnum];';
}
\$SIG{$sig} = '$newhandler'
}
--- 203,209 ----
\$SIG{$sig} = 'IGNORE';
\$${class}::instance[$instnum]->ReadConfig;
if (\$oldhandler[$instnum] && \$oldhandler[$instnum] ne 'IGNORE') {
! eval '&\$oldhandler[$instnum];';
}
\$SIG{$sig} = '$newhandler'
}