branch: master
commit 76d51ecd417b426941bd84e425dcbbc72aff46af
Author: Oleh Krehel <ohwoeo...@gmail.com>
Commit: Oleh Krehel <ohwoeo...@gmail.com>

    Fix compile warnings
---
 hydra.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/hydra.el b/hydra.el
index 09a0052..c6fc306 100644
--- a/hydra.el
+++ b/hydra.el
@@ -213,10 +213,12 @@ the body or the head."
 
 (defcustom hydra-key-format-spec "%s"
   "Default `format'-style specifier for _a_  syntax in docstrings.
-When nil, you can specify your own at each location like this: _ 5a_.")
+When nil, you can specify your own at each location like this: _ 5a_."
+  :type 'string)
 
 (defcustom hydra-doc-format-spec "%s"
-  "Default `format'-style specifier for ?a?  syntax in docstrings.")
+  "Default `format'-style specifier for ?a?  syntax in docstrings."
+  :type 'string)
 
 (make-obsolete-variable
  'hydra-key-format-spec

Reply via email to