-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Replace flet with cl-flet #75
Conversation
Flet is a deprecated macro as of Emacs 24.3.
1 similar comment
You can't just replace I think it must be replaced with the |
Does replace
|
Well, actually I can not say for sure. Another issue with the
I guess it's because you misuse the You can see the difference in the commit: e425751 If with (flet ((temp-function (arg) ...)) ...) then the (letf (((symbol-function 'temp-function) #'(lambda (arg) ...))) ...)
Yes, if you are going to submit a pull request, do it against the However I think that my commit already fixes the problem, and it only waits for somebody who will test it (For me it seem to work). You can do it by just downloading the https://raw.githubusercontent.com/Bad-ptr/persp-mode.el/develop/persp-mode.el file and If you can not test, let me know, I will merge it into master(I quite sure that it works:)) and we'll see how it will go. |
Must be fixed in master. |
The macro
flet
is deprecated as of Emacs 24.3. Let's replace it withcl-flet
.