Skip to content
  1. Apr 03, 2013
  2. Apr 02, 2013
  3. Mar 20, 2013
  4. Mar 19, 2013
  5. Feb 25, 2013
  6. Feb 24, 2013
    • Luís Oliveira's avatar
      Update README. · a38269c6
      Luís Oliveira authored
      It's still a bit oriented towards the CFFI developer, rather than
      potential users, but at least it doesn't revolve around a comparison
      against UFFI which is not as relevant as it once was.
      a38269c6
  7. Feb 23, 2013
  8. Feb 21, 2013
  9. Jan 21, 2013
  10. Jan 18, 2013
  11. Jan 07, 2013
  12. Jan 06, 2013
  13. Jan 03, 2013
  14. Nov 24, 2012
  15. Nov 23, 2012
  16. Nov 12, 2012
    • Liam M. Healy's avatar
      Restore default type class name · 1b88e331
      Liam M. Healy authored
      In defcstruct, there was a line, removed in be626770, that set a
      default type class name by appending "-TCLASS".  Without this line,
      the class will be directly FOREIGN-STRUCT-TYPE instead of a subclass.
      This is acceptable if the translate methods are not going to be
      redefined, but if they are, any change will apply to all instances
      (including instances of subclasses of other structures, which may call
      these with call-next-method).  In fact, there is a check in
      define-translation-method to prevent redefinition with that macro, but
      of course a defmethod would be just as bad.
      
      While in principal one can specify the :class argument, this isn't
      always possible, for example, if the structure was made by groveling.
      Even so, it is a bad idea to make a default which has the potential
      for this kind of harm.
      
      This fix now permits GSLL to compile and load correctly.
      1b88e331