Ignore:
Timestamp:
03/19/22 12:50:18 (13 months ago)
Author:
Mark Evenson
Message:

Untabify en masse

Results of running style.org source blocks on tree

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/src/org/armedbear/lisp/compiler-pass2.lisp

    r15223 r15569  
    951951  (let* ((*compiler-debug* nil)
    952952         (method (make-jvm-method :constructor :void nil
    953           :flags '(:public)))
     953                                  :flags '(:public)))
    954954         ;; We don't normally need to see debugging output for constructors.
    955955         (super (class-file-superclass class))
     
    39243924    (with-operand-accumulation
    39253925         ((emit-variable-operand (block-id-variable block))
    3926     (emit-load-externalized-object-operand (block-name block))
    3927     (compile-operand result-form nil))
     3926          (emit-load-externalized-object-operand (block-name block))
     3927          (compile-operand result-form nil))
    39283928       (emit-invokestatic +lisp+ "nonLocalReturn" (lisp-object-arg-types 3)
    3929         +lisp-object+))
     3929                          +lisp-object+))
    39303930    ;; Following code will not be reached, but is needed for JVM stack
    39313931    ;; consistency.
     
    39423942           (compile-form arg target nil))
    39433943          ((and (consp arg) (eq (%car arg) 'cdr) (= (length arg) 2))
    3944      (compile-forms-and-maybe-emit-clear-values (second arg) 'stack nil)
     3944           (compile-forms-and-maybe-emit-clear-values (second arg) 'stack nil)
    39453945           (emit-invoke-method "cadr" target representation))
    39463946          (t
     
    40064006    (with-operand-accumulation
    40074007        ((compile-operand symbols-form nil)
    4008   (compile-operand values-form nil))
     4008        (compile-operand values-form nil))
    40094009      (unless (and (single-valued-p symbols-form)
    4010        (single-valued-p values-form))
    4011   (emit-clear-values))
     4010                   (single-valued-p values-form))
     4011        (emit-clear-values))
    40124012      (save-dynamic-environment environment-register)
    40134013      ;; Compile call to Lisp.progvBindVars().
    40144014      (emit-push-current-thread)
    40154015      (emit-invokestatic +lisp+ "progvBindVars"
    4016       (list +lisp-object+ +lisp-object+ +lisp-thread+) nil))
     4016                        (list +lisp-object+ +lisp-object+ +lisp-thread+) nil))
    40174017      ;; Implicit PROGN.
    40184018    (let ((*blocks* (cons block *blocks*)))
     
    69026902       (compile-operand (third form) nil)) ; Result.
    69036903    (emit-invokevirtual +lisp-thread+ "throwToTag"
    6904       (lisp-object-arg-types 2) nil))
     6904                        (lisp-object-arg-types 2) nil))
    69056905  ;; Following code will not be reached.
    69066906  (when target
     
    74317431  `(lambda ,(cadr form)
    74327432     (error 'program-error :format-control "Program error while compiling ~a" :format-arguments
    7433       (if ,condition
    7434     (list (apply 'format nil ,(slot-value condition 'sys::format-control) ',(slot-value condition 'sys::format-arguments)))
    7435     (list "a form")))))
     7433            (if ,condition
     7434                (list (apply 'format nil ,(slot-value condition 'sys::format-control) ',(slot-value condition 'sys::format-arguments)))
     7435                (list "a form")))))
    74367436
    74377437(defun compile-defun (name form environment filespec stream *declare-inline*)
Note: See TracChangeset for help on using the changeset viewer.