Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (328 - 330 of 1030)

Ticket Resolution Summary Owner Reporter
#813 fixed There is no warning for unsaved documents when closing the IDE (Cocotron Gary Byers ender2012
Description

To reproduce:

  • open the IDE
  • Open a .lisp document
  • make a change (add some text)
  • close the document without saving
  • notice there is dialog asking you if you would like to save before you close the document
#837 fixed Some constant-valued integer expressions can be evaluated twice in generated code Gary Byers Gary Byers
Description

From Eric Marsden on openmcl-devel:

| Welcome to Clozure Common Lisp Version 1.7-dev-r14686M  (LinuxX8664)!
| ? (defun foo ()
|     (catch 'ct5 (throw 'ct5 (logior -920833 (the integer
-2513842743151)))))
| FOO
| ? (foo)
| > Error: Can't throw to tag -263425
| > While executing: FOO, in process listener(1).
`----
#858 fixed run-program arguments on Windows Gary Byers R. Matthew Emerson
Description

On Windows, one creates a new process with CreateProcess, which accepts a string parameter that contains the command line for the newly created process.

In the newly created process, C runtime code then parses this string and constructs argc and argv[]. The rules used to do this are described by http://msdn.microsoft.com/en-us/library/a1y7w461.aspx.

We need to apply the inverse of those rules to the command and arguments given to run-program so that the the newly created process sees the same argv[] that the user provided to run-program.

Currently, we just join the all the argument strings together with #\space and call it a day.

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