The R Project SVN R-packages

Rev

Rev 5994 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5994 Rev 5995
Line 32... Line 32...
32
 *
32
 *
33
 *  This file defines all the tokens used for syntax highlighting Rd code
33
 *  This file defines all the tokens used for syntax highlighting Rd code
34
 *  via a lexer.
34
 *  via a lexer.
35
 *
35
 *
36
 */
36
 */
-
 
37
 
-
 
38
#define RDPT_COMMENT             1
-
 
39
#define RDPT_SECTION             2
-
 
40
#define RDPT_MACRO_ARG           3
-
 
41
#define RDPT_MACRO_GEN           4
-
 
42
#define RDPT_OTHER               10
37
43