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 682


Ignore:
Timestamp:
2015-06-08T16:26:37-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

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

    r681 r682  
    150150                                                     :fill-pointer 0 :adjustable t)))
    151151  (with-output-to-string (s fstr)
    152     (infix-print expr s op print-level))
     152    (infix-print-to-stream expr s op print-level))
    153153  fstr)
    154154
     
    157157If OP is not nil, the expression is parenthesized if its operator
    158158has lower precedence than OP."
     159  (cond
     160    ((null stream)
     161     (infix-print-to-string expr op print-level))
     162    (t (infix-print-to-stream expr op print-level))))
Note: See TracChangeset for help on using the changeset viewer.