Custom Query (1030 matches)
Results (904 - 906 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #563 | fixed | possible bug in format tilde e | ||
| Description |
When I do (setq x 0) (loop (setq x (+ x .00001)) (format t "~%~8,2e" x)) I pretty soon see lines of varying width such as
and I wonder if that can be right. From the ANSI:
|
|||
| #602 | fixed | post-commit-hook to update trac tickets | ||
| Description |
There's a Trac contrib script that can be used as an svn post-commit-hook which will look through the commit log for references to tickets and update the tickets automagically. This would be a handy feature. |
|||
| #1372 | notabug | pprint-logical-block not making use of *print-right-margin* value | ||
| Description |
the code (let ((stream *standard-output*) (*print-right-margin* 20))
(pprint-logical-block (stream (list "item01" "item02" "item03" "item04")
:prefix "[" :suffix "]")
(loop (princ (pprint-pop) stream)
(pprint-exit-if-list-exhausted)
(princ ", " stream) (pprint-newline :linear stream)))
(terpri stream))
outputs:
[item01, item02, item03, item04] instead. |
|||
