Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (904 - 906 of 1030)

Ticket Resolution Summary Owner Reporter
#563 fixed possible bug in format tilde e R. Matthew Emerson Bob Boyer
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

1.169E-2 1.7E-2

and I wonder if that can be right. From the ANSI:

The full form is ~w,d,e,k,overflowchar,padchar, exponentcharE. ... Exactly w characters will be output.

#602 fixed post-commit-hook to update trac tickets R. Matthew Emerson R. Matthew Emerson
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 Craig Lanning
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] which exceeds the right margin of 20. It should have output:

[item01, 
 item02, 
 item03, 
 item04]

instead.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.