CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2015/05/02 10:05:07
Modified files:
devel/p5-Term-ReadKey: Makefile
Removed files:
devel/p5-Term-ReadKey/patches: patch-genchars_pl
Log message:
Remove 9 year old patch that now breaks GetControlChars(). ok ajacoutot@
GetControlChars() should return something that looks like a control char
this patch made it return a number instead. Found while porting sslmate.
perl -MTerm::ReadKey -MScalar::Util -e \
'print Scalar::Util::looks_like_number({GetControlChars}->{EOF}) ? 1 : 0;'
The above should return 0 but as returning 1.