Custom Query (1030 matches)
Results (328 - 330 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #813 | fixed | There is no warning for unsaved documents when closing the IDE (Cocotron | ||
| Description |
To reproduce:
|
|||
| #837 | fixed | Some constant-valued integer expressions can be evaluated twice in generated code | ||
| 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 | ||
| 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. |
|||
