|
15 | 15 | (putprop sym lab 'builtin-function-entry ))
|
16 | 16 |
|
17 | 17 | (def-builtin-entry 'LISP:= "NUMEQUAL")
|
| 18 | +(def-builtin-entry 'LISP:/= "NUMNEQUAL") |
18 | 19 | (def-builtin-entry 'LISP:> "GREATERP")
|
19 | 20 | (def-builtin-entry 'LISP:< "LESSP")
|
20 | 21 | (def-builtin-entry 'LISP:>= "GREQP")
|
|
30 | 31 | (def-builtin-entry 'LISP:COS "COS")
|
31 | 32 | (def-builtin-entry 'LISP:TAN "TAN")
|
32 | 33 | (def-builtin-entry 'LISP:ATAN "ATAN")
|
| 34 | +(def-builtin-entry 'LISP:SINH "SINH") |
| 35 | +(def-builtin-entry 'LISP:COSH "COSH") |
| 36 | +(def-builtin-entry 'LISP:TANH "TANH") |
| 37 | +(def-builtin-entry 'LISP:ATANH "ATANH") |
| 38 | +(def-builtin-entry 'LISP:ASINH "ASINH") |
| 39 | +(def-builtin-entry 'LISP:ACOSH "ACOSH") |
33 | 40 | (def-builtin-entry 'LISP:SQRT "SQRT")
|
34 | 41 | (def-builtin-entry 'LISP:LOG "LOG")
|
35 | 42 | (def-builtin-entry 'LISP:EXP "EXP")
|
|
45 | 52 | (def-builtin-entry 'LISP:LOGAND "LOGAND")
|
46 | 53 | (def-builtin-entry 'LISP:LOGIOR "LOGIOR")
|
47 | 54 | (def-builtin-entry 'LISP:LOGXOR "LOGXOR")
|
| 55 | +(def-builtin-entry 'LISP:LOGEQV "LOGEQV") |
| 56 | +(def-builtin-entry 'LISP:LOGNAND "LOGNAND") |
| 57 | +(def-builtin-entry 'LISP:LOGNOR "LOGNOR") |
48 | 58 | (def-builtin-entry 'LISP:LOGNOT "LOGNOT")
|
49 | 59 | (def-builtin-entry 'LISP:LOGTEST "LOGTEST")
|
50 | 60 | (def-builtin-entry 'LISP:LOGBITP "LOGBITP")
|
|
68 | 78 | (def-builtin-entry 'LISP:CHAR-DOWNCASE "CHDOWNCASE")
|
69 | 79 |
|
70 | 80 | (def-builtin-entry 'LISP:COPY-OBJECT "COPYOBJ")
|
| 81 | +(def-builtin-entry 'LISP:REPLACE-OBJECT "REPLACEOBJECT") |
| 82 | +(def-builtin-entry 'LISP:BECOME "BECOME") |
71 | 83 | (def-builtin-entry 'LISP:CLASS "GETCLASS")
|
| 84 | +(def-builtin-entry 'LISP:ENTER-CLASS "ENTERCLASS") |
72 | 85 | (def-builtin-entry 'LISP:SEND "SEND")
|
73 | 86 | (def-builtin-entry 'LISP:SEND-MSG "SEND")
|
74 | 87 | (def-builtin-entry 'LISP:SEND-MESSAGE "SENDMESSAGE")
|
| 88 | +(def-builtin-entry 'LISP:SEND-IF-FOUND "SEND_IF_FOUND") |
75 | 89 | (def-builtin-entry 'LISP:INSTANTIATE "INSTANTIATE")
|
76 | 90 | (def-builtin-entry 'LISP:CLASSP "CLASSP")
|
77 | 91 | (def-builtin-entry 'LISP:SUBCLASSP "SUBCLASSP")
|
78 | 92 | (def-builtin-entry 'LISP:DERIVEDP "DERIVEDP")
|
79 | 93 | (def-builtin-entry 'LISP:SLOT "SLOT")
|
80 | 94 | (def-builtin-entry 'LISP:SETSLOT "SETSLOT")
|
81 | 95 | (def-builtin-entry 'LISP:CLONE "CLONE")
|
82 |
| -;;(def-builtin-entry 'SYSTEM::METHOD "FINDMETHOD") |
| 96 | +(def-builtin-entry 'LISP::FIND-METHOD "FINDMETHOD") |
83 | 97 | (def-builtin-entry 'SYSTEM::METHOD-CACHE "METHCACHE")
|
84 | 98 |
|
85 | 99 | ; (def-builtin-entry 'LISP:OPEN "OPEN") ;rewritten in euslisp
|
86 | 100 | (def-builtin-entry 'LISP:CLOSE "CLOSE")
|
87 | 101 | (def-builtin-entry 'LISP:READ "READ")
|
88 | 102 | (def-builtin-entry 'LISP:READ-LINE "READLINE")
|
| 103 | +(def-builtin-entry 'LISP:READ-DELIMITED-LIST "READ_DELIMITED_LIST") |
89 | 104 | (def-builtin-entry 'LISP:READ-CHAR "READCH")
|
90 | 105 | (def-builtin-entry 'LISP:UNREAD-CHAR "UNREADCH")
|
91 | 106 | (def-builtin-entry 'LISP:PEEK-CHAR "PEEKCH")
|
|
99 | 114 | (def-builtin-entry 'LISP:WRITE-WORD "WRTWORD")
|
100 | 115 | (def-builtin-entry 'LISP:WRITE-LONG "WRTLONG")
|
101 | 116 | (def-builtin-entry 'LISP:SET-MACRO-CHARACTER "SETMACROCH")
|
| 117 | +(def-builtin-entry 'LISP:GET-MACRO-CHARACTER "GETMACROCH") |
102 | 118 | (def-builtin-entry 'LISP:SET-DISPATCH-MACRO-CHARACTER "SETDISPMACRO")
|
103 | 119 | (def-builtin-entry 'LISP:GET-DISPATCH-MACRO-CHARACTER "GETDISPMACRO")
|
104 | 120 | (def-builtin-entry 'LISP:FORMAT "XFORMAT")
|
|
111 | 127 | (def-builtin-entry 'LISP:V.* "SCA3PROD")
|
112 | 128 | (def-builtin-entry 'LISP:V< "VLESSP")
|
113 | 129 | (def-builtin-entry 'LISP:V> "VGREATERP")
|
| 130 | +(def-builtin-entry 'LISP:V-ABS "VMINUS_ABS") |
| 131 | +(def-builtin-entry 'LISP:V++ "VPLUSPLUS") |
114 | 132 | (def-builtin-entry 'LISP:VMIN "VMIN")
|
115 | 133 | (def-builtin-entry 'LISP:VMAX "VMAX")
|
116 | 134 | (def-builtin-entry 'LISP:MINIMAL-BOX "MINIMALBOX")
|
|
120 | 138 | (def-builtin-entry 'LISP:NORMALIZE-VECTOR "VNORMALIZE")
|
121 | 139 | (def-builtin-entry 'LISP:DISTANCE "VDISTANCE")
|
122 | 140 | (def-builtin-entry 'LISP:DISTANCE2 "VDISTANCE2")
|
| 141 | +(def-builtin-entry 'LISP:DIRECTION "VDIRECTION") |
| 142 | +(def-builtin-entry 'LISP:MIDPOINT "MIDPOINT") |
123 | 143 | ;; (def-builtin-entry 'LISP:TRIANGLE "TRIANGLE") ;obsolete
|
124 | 144 | (def-builtin-entry 'LISP:FLOATVECTOR "MKFLTVEC")
|
125 | 145 | (def-builtin-entry 'LISP:FLOAT-VECTOR "MKFLTVEC")
|
|
200 | 220 | (def-builtin-entry 'LISP:ELT "ELT")
|
201 | 221 | (def-builtin-entry 'LISP:SETELT "SETELT")
|
202 | 222 | (def-builtin-entry 'LISP:CHAR "EUSCHAR")
|
| 223 | +(def-builtin-entry 'LISP:SCHAR "EUSCHAR") |
203 | 224 | (def-builtin-entry 'LISP:SETCHAR "SETCHAR")
|
204 | 225 | (def-builtin-entry 'LISP:BIT "BIT")
|
| 226 | +(def-builtin-entry 'LISP:SBIT "SBIT") |
205 | 227 | (def-builtin-entry 'LISP:SETBIT "SETBIT")
|
| 228 | +(def-builtin-entry 'LISP:BIT-AND "BITAND") |
| 229 | +(def-builtin-entry 'LISP:BIT-IOR "BITIOR") |
| 230 | +(def-builtin-entry 'LISP:BIT-XOR "BITXOR") |
| 231 | +(def-builtin-entry 'LISP:BIT-EQV "BITEQV") |
| 232 | +(def-builtin-entry 'LISP:BIT-NAND "BITNAND") |
| 233 | +(def-builtin-entry 'LISP:BIT-NOR "BITNOR") |
| 234 | +(def-builtin-entry 'LISP:BIT-NOT "BITNOT") |
206 | 235 | (def-builtin-entry 'LISP:VECTOR "MKVECTOR")
|
207 | 236 | (def-builtin-entry 'LISP:INTEGER-VECTOR "MKINTVECTOR")
|
208 | 237 | (def-builtin-entry 'LISP:SYMBOLP "SYMBOLP")
|
|
222 | 251 | ;; (def-builtin-entry 'LISP:STRING= "STR_EQ")
|
223 | 252 | (def-builtin-entry 'LISP:STRING> "STR_GT")
|
224 | 253 | (def-builtin-entry 'LISP:STRING>= "STR_GE")
|
| 254 | +(def-builtin-entry 'LISP:STRINGEQ "STRINGEQ") |
| 255 | +(def-builtin-entry 'LISP:STRINGEQUAL "STRINGEQUAL") |
225 | 256 | (def-builtin-entry 'LISP:EVAL "EVAL")
|
226 | 257 | (def-builtin-entry 'LISP:APPLY "APPLY")
|
227 | 258 | (def-builtin-entry 'LISP:FUNCALL "FUNCALL")
|
|
0 commit comments