Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (829 - 831 of 1030)

Ticket Resolution Summary Owner Reporter
#817 invalid inline notinline Frank
Description

What I was trying to do is to declare a function inline. That function has a macro inside. Depending on whether I declaim it inline or notinline I get two different outcomes.

Well I assume that we always should get the same outcome (semantically) independent of whether we declaim something inline or notinline.

Here's a demo:

(in-package :cl-user)

(defpackage :test
  (:use :cl))

(in-package :test)

(defmacro foo ()
  `(funcall ',(intern "FOOBAR")))

(defun foobar ()
  42)

(declaim (inline bar))
(defun bar ()
  (foo))

(in-package :cl-user)

(defun busted ()
  (test::bar))

;; Just for information...
(find-symbol "FOOBAR")			; => FOOBAR, :INTERNAL

;; Error!
(busted)

;;; Lets try it with bar not being inlined.
;;; =======================================

(in-package :test)

(declaim (notinline bar))
(defun bar ()
  (foo))

(in-package :cl-user)

(unintern 'foobar)			; GC that

(defun busted ()
  (test::bar))

;; Runs fine this time.
(busted)

;; Just for information...
(find-symbol "FOOBAR")			; => NIL, NIL

#448 fixed inspecting sockets R. Matthew Emerson Helmut Eller
Description

I get an error when inspecting tcp sockets:

Welcome to Clozure Common Lisp Version 1.3-dev-r11532M-trunk  (LinuxX8632)!
? (ccl::make-tcp-socket :remote-host "www.google.com" :remote-port 80)
#<BASIC-TCP-STREAM ISO-8859-1 (SOCKET/4) #x149DD8EE>
? (inspect *)
[0]     #<BASIC-TCP-STREAM ISO-8859-1 (SOCKET/4) #x149DD8EE>
[1]     Type: CCL::BASIC-TCP-STREAM
[2]     Class: #<BUILT-IN-CLASS CCL::BASIC-TCP-STREAM>
> Error: Invalid reference to #<BASIC-TCP-STREAM ISO-8859-1 (SOCKET/4) #x149DD8EE> at index 0.
> While executing: #<CCL::STANDARD-KERNEL-METHOD INSPECTOR::LINE-N (INSPECTOR::UVECTOR-INSPECTOR
                                                                    T)>, in process listener(1).
> Type :POP to abort, :R for a list of available restarts.
> Type :? for other options.
1 > 
#493 fixed inspector window never active Joakim Sandgren
Description

The Inspector window is when it is called for never active then it shows. You always have to click in it to start to use it.

comment : the apropos window is always active comment : the search files window is not active the first time, but all times after the first time

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