diff options
author | jao <jao@gnu.org> | 2025-01-05 15:30:41 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2025-01-05 15:30:41 +0000 |
commit | dcded86fca731969fece47d57ce90d90e0fe701a (patch) | |
tree | 4145db5988075fce87928affff574fb99dfe03c2 /elisp/geiser-impl.el | |
parent | 97ce88463f346ff0dab147334fa0ce7b81569d7c (diff) | |
download | geiser-dcded86fca731969fece47d57ce90d90e0fe701a.tar.gz geiser-dcded86fca731969fece47d57ce90d90e0fe701a.tar.bz2 |
Revert "Define autoloads how that is normally done"
This reverts commit 67f727855895050aca3bcf37066e804dc8f307de.
While the rationale is sound, it prevents simpler uses of geiser.el to run the
package without having to install it.
Fixes #70
Diffstat (limited to 'elisp/geiser-impl.el')
-rw-r--r-- | elisp/geiser-impl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elisp/geiser-impl.el b/elisp/geiser-impl.el index e82c050..f95034a 100644 --- a/elisp/geiser-impl.el +++ b/elisp/geiser-impl.el @@ -143,9 +143,9 @@ in order to determine its scheme flavour." (push (cons impl file) geiser-impl--load-files))) ;;;###autoload -(progn ; Copy the whole definition to the autoloads file. - (defun geiser-activate-implementation (impl) - (add-to-list 'geiser-active-implementations impl))) +(progn ;Copy the whole def to the autoloads file. +(defun geiser-activate-implementation (impl) + (add-to-list 'geiser-active-implementations impl))) (defsubst geiser-deactivate-implementation (impl) (setq geiser-active-implementations |