Changeset 13675
- Timestamp:
- Apr 27, 2010, 5:09:29 AM (15 years ago)
- Location:
- trunk/source
- Files:
-
- 8 edited
-
compiler/nx-basic.lisp (modified) (3 diffs)
-
level-1/l1-pathnames.lisp (modified) (1 diff)
-
level-1/l1-readloop-lds.lisp (modified) (1 diff)
-
level-1/linux-files.lisp (modified) (1 diff)
-
lib/backtrace.lisp (modified) (1 diff)
-
lib/macros.lisp (modified) (1 diff)
-
lib/nfcomp.lisp (modified) (1 diff)
-
lib/source-files.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/compiler/nx-basic.lisp
r13213 r13675 48 48 ;; you can declare FTYPE and that will turn off any warnings without interfering with 49 49 ;; the function being defined later). For now just provide this as an out. 50 (defvar *compiler-warn-on-undefined-type-references* #+ccl- 0711 t #-ccl-0711t)50 (defvar *compiler-warn-on-undefined-type-references* #+ccl-qres t #-ccl-qres t) 51 51 52 52 … … 142 142 (let ((policy (%istruct 'compiler-policy 143 143 #'(lambda (env) 144 #+ccl- 0711(< (debug-optimize-quantity env) 2)145 #-ccl- 0711(neq (debug-optimize-quantity env) 3)) ; allow-tail-recursion-elimination144 #+ccl-qres (< (debug-optimize-quantity env) 2) 145 #-ccl-qres (neq (debug-optimize-quantity env) 3)) ; allow-tail-recursion-elimination 146 146 #'(lambda (env) 147 147 (declare (ignorable env)) 148 #+ccl- 0711nil149 #-ccl- 0711(eq (debug-optimize-quantity env) 3)) ; inhibit-register-allocation148 #+ccl-qres nil 149 #-ccl-qres (eq (debug-optimize-quantity env) 3)) ; inhibit-register-allocation 150 150 #'(lambda (env) 151 151 (let* ((safety (safety-optimize-quantity env))) … … 154 154 safety)))) ; trust-declarations 155 155 #'(lambda (env) 156 #+ccl- 0711(> (speed-optimize-quantity env)156 #+ccl-qres (> (speed-optimize-quantity env) 157 157 (space-optimize-quantity env)) 158 #-ccl- 0711(>= (speed-optimize-quantity env)158 #-ccl-qres (>= (speed-optimize-quantity env) 159 159 (+ (space-optimize-quantity env) 2))) ; open-code-inline 160 160 #'(lambda (env) -
trunk/source/level-1/l1-pathnames.lisp
r13579 r13675 627 627 (ignore-errors 628 628 (truename 629 (native-to-directory-pathname (or #+ccl- 0711(getenv "HOME")629 (native-to-directory-pathname (or #+ccl-qres (getenv "HOME") 630 630 (get-user-home-dir (getuid)))))))) 631 631 (if (and native (eq :absolute (car (pathname-directory native)))) -
trunk/source/level-1/l1-readloop-lds.lisp
r13368 r13675 637 637 (defvar *break-frame* nil "frame-pointer arg to break-loop") 638 638 (defvar *break-loop-when-uninterruptable* t) 639 (defvar *show-restarts-on-break* #+ccl- 0711 t #-ccl-0711nil)639 (defvar *show-restarts-on-break* #+ccl-qres t #-ccl-qres nil) 640 640 (defvar *show-available-restarts* nil) 641 641 -
trunk/source/level-1/linux-files.lisp
r13525 r13675 1296 1296 1297 1297 (defparameter *silently-ignore-catastrophic-failure-in-run-program* 1298 #+ccl- 0711 t #-ccl-0711nil1298 #+ccl-qres t #-ccl-qres nil 1299 1299 "If NIL, signal an error if run-program is unable to start the program. 1300 1300 If non-NIL, treat failure to start the same as failure from the program -
trunk/source/lib/backtrace.lisp
r13468 r13675 29 29 (defparameter *backtrace-print-length* 5) 30 30 31 (defparameter *backtrace-format* #+ccl- 0711 :direct #-ccl-0711:traditional31 (defparameter *backtrace-format* #+ccl-qres :direct #-ccl-qres :traditional 32 32 "If :TRADITIONAL, shows calls to non-toplevel functions using FUNCALL, and shows frame address values. 33 33 If :DIRECT, uses a more streamlined format.") -
trunk/source/lib/macros.lisp
r13458 r13675 1878 1878 1879 1879 1880 (defvar *warn-about-unreferenced-required-args-in-methods* #+ccl- 0711 nil #-ccl-0711T)1880 (defvar *warn-about-unreferenced-required-args-in-methods* #+ccl-qres nil #-ccl-qres T) 1881 1881 1882 1882 (defun parse-defmethod (name args env) -
trunk/source/lib/nfcomp.lisp
r13569 r13675 72 72 (defvar *fcomp-external-format* :default) 73 73 74 (defvar *fasl-break-on-program-errors* #+ccl- 0711 nil #-ccl-0711:defer74 (defvar *fasl-break-on-program-errors* #+ccl-qres nil #-ccl-qres :defer 75 75 "Controls what happens when the compiler detects PROGRAM-ERROR's during file compilation. 76 76 -
trunk/source/lib/source-files.lisp
r13201 r13675 126 126 definition type NAME" 127 127 (loop with known-keys = '( ;; Backward compatibility 128 #+ccl- 0711:default-name-function)128 #+ccl-qres :default-name-function) 129 129 for (key . nil) in options 130 130 unless (memq key known-keys)
Note:
See TracChangeset
for help on using the changeset viewer.
