-
I fixed this by pruning such options as follows:
```
(defun company-irony-c-headers--clean-compiler-options (options)
(cond ((null options)
nil)
((or (string-equal "-MF" (car optio…
-
Salut Guillaume
Before all, thanks for your amazing "irony" packages. They have
notably increased my speed coding.
I write you in order to comment that maybe the last version of irony
or perha…
-
**Describe the bug**
Same issue as #69
`STAK` from famous gabriel benchmarks:
```cl
;;; STAK -- The TAKeuchi function with special variables instead of parameter
;;; passing.
(defvar *st…
-
In the REPL I've noticed that if a function fails within `(expect-failure)` but writes to the database along the way then it isn't rolled back. Any writes that happened prior to the failure mutate the…
-
Not sure if this is a true issue, but I ran into this while testing peek-mode with the _scratch_ buffer, which contains the '*' character.
A simple example:
```
(defconst test-url
'(("^/test/$" . …
-
So far I'm using reload a ton. For interactive packages that are not dependencies, it's very useful to quickly get the compiler feedback. Unless my applications have a lot of units, there won't be a…
-
```
(defun org-make-toc--link-entry-github (pos)
"Return text for entry at POS converted to GitHub style link."
(-when-let* ((title (org-link-display-format (org-entry-get pos "ITEM")))
…
-
```lisp
(defpackage :common-lisp-user)
#+jscl
(defun hello ()
(format t "Hello, yes JSCL ~%"))
#-jscl
(defun hello ()
(format t "Hello, no JSCL ~%"))
(hello)
```
This piece of co…
-
For example:
```
(defun ivy-org-ql-agenda-files ()
(interactive)
(let ((files (org-agenda-files)))
(ivy-read
"Query: "
#'(lambda (input)
(let ((query (…
-
Would be nice if I select something in the text box before opening emacs to have it appear in the emacs buffer so I can edit it before pasting again. Here is how to do it (two trivial changes; feel fr…