Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (247 - 249 of 1030)

Ticket Resolution Summary Owner Reporter
#1082 notabug wrong *print-circle* handling by format directive ~:* Anton Vodonosov
Description

Use case:

(setf *print-circle* t)
(format nil "~{~A ~:*~A, ~}" '("77" "88"))
=> "#1=77 #1#, #2=88 #2#, "

Expected value

=> "77 77, 88 88, "
#1094 notabug self-modified function doesn't behave correctly hasarkinn
Description

(defun f () (setf (symbol-function 'f) (lambda () 1)) (f))

Such a function will cause an infinite loop when it is call at first time but when interupting and calling (f) again, it has been modified to (lambda () 1) I have tried several CL implementation and they all behave correctly, they return 1 and do not cause an infinite loop.

#1097 notabug function watch documentation error drunkedcat
Description

The documentation of function 'watch' is wrong. It says


? (defvar *s* "xxxxx") *S* ? (watch *s*) "xxxxx"


but it should be ======= ? (watch (quote *s*)) =======

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