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

« back to all changes in this revision

Viewing changes to include/ruby/node.h

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Hermann
  • Date: 2008-05-16 12:37:06 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20080516123706-r4llcdfd35aobrjv
Tags: 1.9.0.1-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Robustify check for target_os, fixing build failure on lpia.
* debian/control:
  - ruby1.9 pkg: moved rdoc1.9 suggestion to depends. (LP: #228345)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
  node.h -
4
4
 
5
5
  $Author: matz $
6
 
  $Date: 2007-12-10 01:39:49 +0900 (Mon, 10 Dec 2007) $
7
6
  created at: Fri May 28 15:14:02 JST 1993
8
7
 
9
8
  Copyright (C) 1993-2007 Yukihiro Matsumoto
269
268
 
270
269
#define RNODE(obj)  (R_CAST(RNode)(obj))
271
270
 
272
 
/* 0..4:T_TYPES, 5:FL_MARK, 6:reserved, 7:NODE_NEWLINE */
273
 
#define NODE_NEWLINE (((VALUE)1)<<7)
 
271
/* 0..4:T_TYPES, 5:FL_MARK, 6:reserved, 7:NODE_FL_NEWLINE */
 
272
#define NODE_FL_NEWLINE (((VALUE)1)<<7)
274
273
 
275
274
#define NODE_TYPESHIFT 8
276
275
#define NODE_TYPEMASK  (((VALUE)0x7f)<<NODE_TYPESHIFT)