-
```c
DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars,
Sset_window_scroll_bars, 1, 5, 0,
doc: /* Set width and type of scroll bars of window WINDOW.
WINDOW must be a live win…
-
I haven't looked at the expanded code yet, but when I try to load hash-set.lisp I get warnings of the following sort:
```
; processing (DEFUN |INTER#| ...)
; file: /home/sly/quicklisp/dists/quick…
-
Right now functions can be declared with any letters from `function` as long as their in order, to please all developers.
However, not all programming languages use variations of `function` (I'm igno…
-
Hello @casouri and thank you for this package!
Have you thought about passing a prefix numeric argument to `expreg-expand`? I think it is useful. For now I use a variant of this:
```elisp
(de…
-
Hey Steve,
I was planning on commenting on your blog...but since there is no way to do that...and you linked to your github account, I figured I'd put this here.
The sleeps you're doing in ru…
-
Consider the following `crucible-syntax` program, which does work:
```racket
(defun @test () Unit
(start start:
(let i1 (fresh Bool))
(let i-2 #t)
(return ())))
```
This show…
-
Hey just to share a very hacky code, didn't write much emacs-lisp before.
I'd like to keep notes on articles I read or optionally save articles for offline reading.
Without building some fancy syn…
-
![image](https://user-images.githubusercontent.com/1116587/194183354-de57f922-994d-4a36-9996-201ead7af781.png)
Running through a demo of Interlisp development style, using CL:DEFUN to define a func…
-
If I construct an executable image (using SBCL 2.1.9 and [buildapp](https://www.xach.com/lisp/buildapp/) on Debian), and copy it to another machine, it complains that it can't load the fonts at the ha…
alanz updated
2 years ago
-
(cffi:defcenum (foo) (:a 1))
(declaim (inline foo))
(cffi:defcfun foo :void (a foo))
(defun bar ()
(declare (optimize speed))
(foo :a))
; in: DEFUN BAR
; (FOO :A)
; --> BLOCK LET LET IF
;…