close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 4399


Ignore:
Timestamp:
2016-06-07T16:54:49-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/infix-printer.lisp

    r4398 r4399  
    123123      (otherwise               
    124124       (cond
    125 
    126125         ;; Handle array references
    127126         ((eq (car expr) 'aref)
     
    131130          (infix-print-separated-list (cddr expr) '\, stream '\, (1+ print-level))
    132131          (format stream "]"))
    133 
    134132         ;; Handle lists
    135133         ((and (symbolp (car expr))
     
    138136          (infix-print-separated-list (cdr expr) '\, stream '\, (1+ print-level))
    139137          (format stream "]"))
    140 
    141138         ;; Handle generic function call syntax
    142139         (t
    143 
    144140          (format stream "~a(" (car expr))
    145141          (infix-print-arg-list (cdr expr) stream (1+ print-level))
Note: See TracChangeset for help on using the changeset viewer.