Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (847 - 849 of 1030)

Ticket Resolution Summary Owner Reporter
#229 wontfix Recompiling Hemlock from the command line gives an error Gary Byers Rainer Joswig
Description

I have Openmcl started from the command line. No GUI.

I call:

(require "COMPILE-HEMLOCK")

and

(ccl::compile-hemlock t)

Read error between positions 18247 and 18805 in /Lisp/Implementations/openmcl/ccl/cocoa-ide/hemlock/src/macros.lisp.

Error: Reader error on #<BASIC-FILE-CHARACTER-INPUT-STREAM ("/Lisp/Implementations/openmcl/ccl/cocoa-ide/hemlock/src/macros.lisp"/9 ISO-8859-1) #x3000425DD39D>, near position 18805, within "gui::typeo":

Reference to unknown package "GUI".

#228 fixed Once exhausted, process becomes uninterruptable gz gz
Description

Once a process is allowed to run to exhaustion, it never again responds to process-interrupt:

(let ((p (make-process "Test")))

  ;; Let it run through once
  (process-preset p #'(lambda () nil))
  (process-enable p)
  (process-wait "exhaust" #'(lambda () (process-exhausted-p p)))

  ;; Now revive it and try to interrupt it
  (process-preset p #'(lambda () (sleep 10)))
  (process-reset p)
  (process-enable p)
  (sleep 1)
  (let ((test :never))
    (process-interrupt p #'(lambda () (setq test :interrupt)))
    (process-wait "exhaust" #'(lambda () (process-exhausted-p p)))
    test))
#227 fixed Hemlock shouldn't crash CCL if it runs into an attribute line it doesn't understand gz Andrew Shalit
Description

(From GB e-mail response to Ron Garret)

All that I can tell is that it's trying to write a warning to the echo area to the effect that it doesn't understand the "Syntax:" file option; I'm not sure that the echo area even exists at this point. (It's dying in the method #/readFromURL:ofType:error: on hemlock-editor-document; this code is running on the event thread, and whatever its notion of "the echo area" is, it probably isn't correct.)

If it's going to try to parse the attribute line and if it's going to do someting other than silently ignore attributes that it doesn't understand, it should probably do that parsing a little later (and, in the current model, it should do that on the right thread.)

On Thu, 3 Jan 2008, Ron Garret wrote:

Correction: It's (apparently) not CFFI. The problem seems to be trying to open a file containing the following modeline:

;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Package: CL-USER; -*-

Trying to open a file with this modeline dumps a whole bunch of error messages to the console and results in a broken Lisp.

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