diff options
author | Andrew Whatson <whatson@gmail.com> | 2020-06-19 23:52:46 +1000 |
---|---|---|
committer | jao <jao@gnu.org> | 2020-07-06 20:12:33 +0000 |
commit | fc81121015f43709abf9dc4d623e26fdb45cae3a (patch) | |
tree | 1f93bed23df2fd569ba81914d1b8054ee8407b41 /elisp | |
parent | 01f1d479cbeb4cf1b0a908c363366e0c6100eea9 (diff) | |
download | geiser-fc81121015f43709abf9dc4d623e26fdb45cae3a.tar.gz geiser-fc81121015f43709abf9dc4d623e26fdb45cae3a.tar.bz2 |
Tag project functions instead of overriding docs
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-repl.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elisp/geiser-repl.el b/elisp/geiser-repl.el index 3ded76c..3b044a9 100644 --- a/elisp/geiser-repl.el +++ b/elisp/geiser-repl.el @@ -50,9 +50,9 @@ symbol (e.g., `guile', `chicken', etc.)." "Function used to determine the current project. The function is called from both source and REPL buffers, and should return a value which uniquely identifies the project." - :type '(choice (function-item :doc "Ignore projects" ignore) - (function-item :doc "Use Project.el" project-current) - (function-item :doc "Use Projectile" projectile-project-root) + :type '(choice (function-item :tag "Ignore projects" ignore) + (function-item :tag "Use Project.el" project-current) + (function-item :tag "Use Projectile" projectile-project-root) (function :tag "Other function")) :group 'geiser-repl) |