-
Notifications
You must be signed in to change notification settings - Fork 92
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
epa--decode-coding-string not defined #154
Comments
…macs versions greater than or equal to 27 (current snapshot) and backward compatibility with stable version (26) and older.
…macs * twittering-mode.el: In Emacs version 27 function (epa--decode-coding-string) was renamed to (decode-coding-string) and it's cause the error on snapshot version of Emacs. Proof: http://git.savannah.gnu.org/cgit/emacs.git/commit/?id=21ab346a07eff8ba43cb2738dc6752f012b77670
I've got the same issue on emacs-snapshot. |
This happened because of that: Drop some epg/epa backwards compat code for ancient Emacs versions |
can also use epa-file--decode-coding-string |
Same issue here on:
Finally decided to modify the line 3114 of the source twittering-mode.el
|
Can somebody make this patch available in MELPA? Please. |
`(epa--decode-coding-string` changed to `(decode-coding-string` as per hayamiz#154
This issue has existed for over four years. It is clearly evident, the project is no longer being maintained and has been abandoned by its developer. |
I recently installed twittering-mode from melpa as I used to use a very old version. It failed to run in latest emacs snapshot (or very recent one in any case) because twittering-mode tries to use
epa--decode-coding-string
which is not defined. Adding the following to my configuration fixed this:(defalias 'epa--decode-coding-string 'decode-coding-string)
The text was updated successfully, but these errors were encountered: