The R Project SVN R

Rev

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

Rev 72446 Rev 78742
Line 582... Line 582...
582
#define S_UNION		 200
582
#define S_UNION		 200
583
#define S_PRODUCT	 213
583
#define S_PRODUCT	 213
584
#define S_RADICAL	 214
584
#define S_RADICAL	 214
585
#define S_SUM		 229
585
#define S_SUM		 229
586
#define S_INTEGRAL	 242
586
#define S_INTEGRAL	 242
-
 
587
 
-
 
588
#define S_ANGLELEFT	 225
587
#define S_BRACKETLEFTTP	 233
589
#define S_BRACKETLEFTTP	 233
588
#define S_BRACKETLEFTBT	 235
590
#define S_BRACKETLEFTBT	 235
-
 
591
#define S_ANGLERIGHT	 241
589
#define S_BRACKETRIGHTTP 249
592
#define S_BRACKETRIGHTTP 249
590
#define S_BRACKETRIGHTBT 251
593
#define S_BRACKETRIGHTBT 251
591
 
594
 
592
#define N_LIM		1001
595
#define N_LIM		1001
593
#define N_LIMINF	1002
596
#define N_LIMINF	1002
Line 1933... Line 1936...
1933
    if (NameAtom(head)) {
1936
    if (NameAtom(head)) {
1934
	if (NameMatch(head, "lfloor"))
1937
	if (NameMatch(head, "lfloor"))
1935
	    code = S_BRACKETLEFTBT;
1938
	    code = S_BRACKETLEFTBT;
1936
	else if (NameMatch(head, "rfloor"))
1939
	else if (NameMatch(head, "rfloor"))
1937
	    code = S_BRACKETRIGHTBT;
1940
	    code = S_BRACKETRIGHTBT;
1938
	if (NameMatch(head, "lceil"))
1941
	else if (NameMatch(head, "lceil"))
1939
	    code = S_BRACKETLEFTTP;
1942
	    code = S_BRACKETLEFTTP;
1940
	else if (NameMatch(head, "rceil"))
1943
	else if (NameMatch(head, "rceil"))
1941
	    code = S_BRACKETRIGHTTP;
1944
	    code = S_BRACKETRIGHTTP;
-
 
1945
	else if (NameMatch(head, "langle"))
-
 
1946
	    code = S_ANGLELEFT;
-
 
1947
	else if (NameMatch(head, "rangle"))
-
 
1948
	    code = S_ANGLERIGHT;
1942
    }
1949
    }
1943
    else if (StringAtom(head) && length(head) > 0) {
1950
    else if (StringAtom(head) && length(head) > 0) {
1944
	if (StringMatch(head, "|"))
1951
	if (StringMatch(head, "|"))
1945
	    code = '|';
1952
	    code = '|';
1946
	else if (StringMatch(head, "||"))  // historical anomaly
1953
	else if (StringMatch(head, "||"))  // historical anomaly