Philippe Vaucher

Results 262 comments of Philippe Vaucher

@umarcor: I confirm your suggestion works: ``` root@docker-emacs:~# file hello hello: ELF 32-bit LSB executable, ARM, EABI5 version 1 (GNU/Linux), statically linked, for GNU/Linux 3.2.0, BuildID[sha1]=99367b08573e864abd79831673e2fbbd7bb1f82f, not stripped root@docker-emacs:~# ./hello...

@umarcor: it works! :tada: The only weird thing is that the first time I run it for other architectures it seems to output the output twice, but maybe that's just...

Oh btw, I'm not sure you need to fix this in qus... 64bits-only arm architectures are pretty rare no? I mean for me an entry in the wiki would be...

> Nevertheless, note that you are likely to find bugs if you run _complex_ applications, specially the ones that use signals. Furthermore, you should expect a 4-10x execution time penalty....

FYI we found an alternative setup that seems to work for us, so this issue is not blocking anymore. I'll keep it open so you can decide what to do...

I found that in the meantime `projectile-replace-regexp` seems to behave properly. This is a really annoying bug, it made me miss some replacements in some projets. Also the docstring for...

I'm okay too, what do we need to do?

@jwiegley: I only have documentation/typo fixes... can I just "give" those change to you (anonymous is fine)? I don't feel like going throught the whole assignment process just for silly...

I have kinda the same problem, with the following config: ``` elisp (use-package use-package :custom (use-package-verbose t) (use-package-always-ensure t) (use-package-always-defer t)) (use-package dired-filter :demand t :after dired) ``` If I...

Without `:demand t` the macro expands to: ``` elisp (progn (use-package-ensure-elpa 'dired-filter '(t) 'nil) (defvar use-package--warning219 (function (lambda (keyword err) (let ((msg (format "%s/%s: %s" 'dired-filter keyword (error-message-string err)))) (display-warning...