~ubuntu-branches/ubuntu/trusty/ruby1.9/trusty

« back to all changes in this revision

Viewing changes to ext/ripper/eventids2.c

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2006-05-08 22:23:12 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060508222312-w2wqeaz030ifi59j
Tags: 1.9.0+20060423-3ubuntu1
* Resynchronized with Debian.
* Only change from Debian is the addition of
  debian/patches/903_sparc_fix_define.patch to fix illegal instructions
  at runtime on sparc. (change from 1.9.0+20050921-1ubuntu1)

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
static ID ripper_id___end__;
59
59
static ID ripper_id_CHAR;
60
60
 
 
61
#include "eventids2table.c"
 
62
 
61
63
static void
62
 
ripper_init_eventids2()
 
64
ripper_init_eventids2(VALUE self)
63
65
{
64
66
    ripper_id_backref = rb_intern("on_backref");
65
67
    ripper_id_backtick = rb_intern("on_backtick");
109
111
    ripper_id_heredoc_end = rb_intern("on_heredoc_end");
110
112
    ripper_id___end__ = rb_intern("on___end__");
111
113
    ripper_id_CHAR = rb_intern("on_CHAR");
 
114
 
 
115
    ripper_init_eventids2_table(self);
112
116
}
113
117
 
114
118
static struct token_assoc {