From: Wolfgang T. <wth...@us...> - 2006-03-20 06:32:22
|
Update of /cvsroot/hoc/hoc/HOC In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17599/HOC Modified Files: HOC.conf.in HOC.hs Log Message: Add another way to get at a SEL: $(sel 'fooBar) corresponds to @selector(foo:bar:) Index: HOC.hs =================================================================== RCS file: /cvsroot/hoc/hoc/HOC/HOC.hs,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- HOC.hs 17 Mar 2006 04:57:36 -0000 1.13 +++ HOC.hs 20 Mar 2006 06:32:16 -0000 1.14 @@ -45,6 +45,8 @@ declareExternConst, declareExternFun, + sel, + -- debugging & statistics: objectMapStatistics @@ -67,3 +69,4 @@ import HOC.CEnum import HOC.ExternConstants import HOC.ExternFunctions +import HOC.Selectors Index: HOC.conf.in =================================================================== RCS file: /cvsroot/hoc/hoc/HOC/HOC.conf.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- HOC.conf.in 17 Mar 2006 05:32:04 -0000 1.5 +++ HOC.conf.in 20 Mar 2006 06:32:16 -0000 1.6 @@ -28,7 +28,8 @@ HOC.ExternConstants, HOC.Exception, HOC.ExternFunctions, - HOC.Unicode + HOC.Unicode, + HOC.Selectors hs-libraries: "HOC", "HOC_cbits" depends: base, template-haskell |