emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master ba61006 2/7: Allow e.g. "_M-\\^_" in docstrings


From: Oleh Krehel
Subject: [elpa] master ba61006 2/7: Allow e.g. "_M-\\^_" in docstrings
Date: Fri, 04 Mar 2016 19:59:49 +0000

branch: master
commit ba61006bff386266ae1c345c15ef93294423770f
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>

    Allow e.g. "_M-\\^_" in docstrings
    
    * hydra.el (hydra--format): Update regexp. Warn instead of error on
      unrecognized keys.
    
    Fixes #178
---
 hydra.el |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/hydra.el b/hydra.el
index 898e209..2d5f440 100644
--- a/hydra.el
+++ b/hydra.el
@@ -586,7 +586,7 @@ The expressions can be auto-expanded according to NAME."
         offset)
     (while (setq start
                  (string-match
-                  "\\(?:%\\( 
?-?[0-9]*s?\\)\\(`[a-z-A-Z/0-9]+\\|(\\)\\)\\|\\(?:_\\( 
?-?[0-9]*?\\)\\(\\[\\|]\\|[-[:alnum:] ~.,;:/|?<>address@hidden&]+?\\)_\\)"
+                  "\\(?:%\\( 
?-?[0-9]*s?\\)\\(`[a-z-A-Z/0-9]+\\|(\\)\\)\\|\\(?:_\\( 
?-?[0-9]*?\\)\\(\\[\\|]\\|[-[:alnum:] ~.,;:/|?<>address@hidden&^]+?\\)_\\)"
                   docstring start))
       (cond ((eq ?_ (aref (match-string 0 docstring) 0))
              (let* ((key (match-string 4 docstring))
@@ -601,7 +601,7 @@ The expressions can be auto-expanded according to NAME."
                              hydra-key-format-spec
                              (concat "%" (match-string 3 docstring) "s"))
                             t nil docstring)))
-                 (error "Unrecognized key: _%s_" key))))
+                 (warn "Unrecognized key: _%s_" key))))
 
             (t
              (let* ((varp (if (eq ?` (aref (match-string 2 docstring) 0)) 1 0))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]