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
{{ message }}
This repository was archived by the owner on Jan 21, 2022. It is now read-only.
It is a known convention [see below] in Emacs Lisp to have -- in function names only if they are internal functions i.e. not to be used/modified/advised by the user.
But I am finding user-facing/interactive functions like mastodon-tl--get-tag-timeline, etc. (basically all mastodon.el interactive functions) to have -- in their names.
Would it be possible to simply replace -- with - in such user-facing fn names?
For backward compatibility, you can use define-obsolete-function-alias for an interim period that allows both versions of such function names (with the obsoleted names with -- and with the new names with -).
Hello,
It is a known convention [see below] in Emacs Lisp to have
--in function names only if they are internal functions i.e. not to be used/modified/advised by the user.But I am finding user-facing/interactive functions like
mastodon-tl--get-tag-timeline, etc. (basically all mastodon.el interactive functions) to have--in their names.Would it be possible to simply replace
--with-in such user-facing fn names?For backward compatibility, you can use
define-obsolete-function-aliasfor an interim period that allows both versions of such function names (with the obsoleted names with--and with the new names with-).References