You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Get the latest code ,and set below code in my .emacs file(only these two lines) ,
(require 'purpose)
(purpose-mode)
it reported below error,please check it.
Eager macro-expansion failure: (error "(alist-get key alist) is not a valid place expression")
WIN7 32bit,emacs 24.4
The text was updated successfully, but these errors were encountered:
alist-get is a new Emacs feature, and Purpose should use it only when it's available. Does this error prevent you from using Purpose?
I work with two version of Emacs: 24.3 and the master branch. On Emacs 24.3 I also get this error message when Purpose loads, but it doesn't cause any problems when Purpose runs. On master branch I don't get any error, as alist-get exists there.
alist-get isn't available in any stable Emacs release yet, but
supporting it causes trouble with eager macro expansion (and therefore
compilation), even if that code is never called, so we have to drop it.
Get the latest code ,and set below code in my .emacs file(only these two lines) ,
(require 'purpose)
(purpose-mode)
it reported below error,please check it.
Eager macro-expansion failure: (error "(alist-get key alist) is not a valid place expression")
WIN7 32bit,emacs 24.4
The text was updated successfully, but these errors were encountered: