Changeset 864ed35 for perlglue.xs


Ignore:
Timestamp:
Apr 29, 2008, 1:21:13 AM (16 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
b67ab6b
Parents:
120291c
Message:
Initial step of moving styles from the current mishmash of different
options to a unified object interface.
No backwards-compatibility support yet.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • perlglue.xs

    r9c7a701 r864ed35  
    256256
    257257void
    258 _create_style(name, function, description)
     258_create_style(name, object)
    259259     char *name
    260      char *function
    261      char *description
     260     SV  *object
    262261     PREINIT:
    263262                /* This is to allow us to bootstrap the default style before the
     
    267266        {
    268267                s = owl_malloc(sizeof(owl_style));
    269                 owl_style_create_perl(s, name, function, description);
     268                owl_style_create_perl(s, name, object);
    270269                owl_global_add_style(&g, s);
    271270        }
Note: See TracChangeset for help on using the changeset viewer.