This repository was archived by the owner on Jan 21, 2022. It is now read-only.
This repository was archived by the owner on Jan 21, 2022. It is now read-only.
Re-factor user var/fn names before 1.0.0 release (replace --
with -
) #206
Open
Description
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-alias
for an interim period that allows both versions of such function names (with the obsoleted names with --
and with the new names with -
).