Custom Query (1030 matches)
Results (595 - 597 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #532 | fixed | ENCODE-STRING-TO-OCTETS and DECODE-STRING-FROM-OCTETS Symbols | ||
| Description |
ENCODE-STRING-TO-OCTETS and DECODE-STRING-FROM-OCTETS symbols aren't exported in the CCL package. Also, if I'm not mistaken, they are lacking of documentation too. (As a side note, it'd be helpful for newcomers to assign STRING-TO-OCTETS and OCTETS-TO-STRING aliases to these functions as well.) |
|||
| #534 | fixed | "shift" in hemlock bindings dont work | ||
| Description |
in hemlock binding you have for example: (bind-key "Select Backward Character" #k"shift-leftarrow") (bind-key "Select Forward Character" #k"shift-rightarrow") (bind-key "Select Next Line" #k"shift-downarrow") etc. neither of these does select anything. in my own tries I dont have "shift" to work in any combination. the "shift" in other bindings is resolved not by "shift" but by a upcase letter (bind-key "Select Forward Character" #k"control-F") |
|||
| #543 | fixed | something funky going on with THE | ||
| Description |
From #ccl on irc, user ecyrb: (defmacro mk-arr (type init &optional len)
"Make array with elements of TYPE, initializing."
(if len `(make-array ,len :element-type ,type :initial-element ,init)
`(make-array (length ,init) :element-type ,type
:initial-contents ,init)))
(eval '(the (simple-array simple-string (2))
(mk-arr 'simple-string '("Jan" "Feb"))))
;Compiler warnings :
; In an anonymous lambda form: Undefined function MK-ARR
> Error: Special operator or global macro-function MK-ARR can't be FUNCALLed or APPLYed
> While executing: #<Anonymous Function #x30004112FDDF>, in process listener(1).
|
|||
