Changeset 13813
- Timestamp:
- Jun 11, 2010, 12:55:18 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/compiler/nx0.lisp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/compiler/nx0.lisp
r13374 r13813 1922 1922 1923 1923 (defun nx1-combination (form env) 1924 (destructuring-bind (sym &rest args) 1925 form 1924 (destructuring-bind (sym &rest args) form 1926 1925 (if (symbolp sym) 1927 1926 (let* ((*nx-sfname* sym) special) … … 1932 1931 )) 1933 1932 (< (safety-optimize-quantity env) 3)) 1934 ; (not (nx-lexical-finfo sym env))1933 ;;(not (nx-lexical-finfo sym env)) 1935 1934 (not (nx-declared-notinline-p sym *nx-lexical-environment*))) 1936 1935 (funcall special form env) ; pass environment arg ... … … 1939 1938 (if (lambda-expression-p sym) 1940 1939 (nx1-lambda-bind (%cadr sym) args (%cddr sym)) 1941 (nx-error "In the form ~S, ~S is not a symbol or lambda expression." form sym)))))1940 (nx-error "In the form ~S, ~S is not a symbol or lambda expression." form sym))))) 1942 1941 1943 1942 (defun nx1-treat-as-call (args)
Note:
See TracChangeset
for help on using the changeset viewer.
