jwiegley / emacs-async

Simple library for asynchronous processing in Emacs
GNU General Public License v3.0
832 stars 68 forks source link

emacs-async switched to lexical-binding #63

Closed thierryvolpiatto closed 7 years ago

thierryvolpiatto commented 8 years ago

Hi, I switched all files to lexical-binding and it is working fine.

@jwiegley would be great if you switched also to lexical-binding all dired files. It is a pain actually to work with what's called fluid vars and also vars that are not bound, only declared, then let-bounded to nil and then called with their symbol which is in turn symbol-evaled... I mean vars such as overwrite-query and used by dired-query, there are other vars like this. Think that now it is time to switch to lexical-binding for emacs-25+.

WDYT ?

Thanks.