Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlglue.xs

    r9c7a701 rb67ab6b  
    256256
    257257void
    258 _create_style(name, function, description)
     258create_style(name, object)
    259259     char *name
    260      char *function
    261      char *description
     260     SV  *object
    262261     PREINIT:
    263                 /* This is to allow us to bootstrap the default style before the
    264                 command architecture has been initialized */
    265262                owl_style *s;
    266263     CODE:
    267264        {
    268265                s = owl_malloc(sizeof(owl_style));
    269                 owl_style_create_perl(s, name, function, description);
     266                owl_style_create_perl(s, name, object);
    270267                owl_global_add_style(&g, s);
    271268        }
Note: See TracChangeset for help on using the changeset viewer.