(py-indent-right, py-outdent-left): new commands, bound to C-c C-r and
[python/dscho.git] / Tools / modulator / Templates / object_new
blob1817a5516adf5ce9d166aa072d0bec5669c80c5d
2 static $abbrev$object *
3 new$abbrev$object()
5         $abbrev$object *self;
6         
7         self = NEWOBJ($abbrev$object, &$Abbrev$type);
8         if (self == NULL)
9                 return NULL;
10         /* XXXX Add your own initializers here */
11         return self;