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

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

[elpa] master 23b5ae9 11/14: Fix bug in keyword completion


From: Ian Dunn
Subject: [elpa] master 23b5ae9 11/14: Fix bug in keyword completion
Date: Sun, 17 Dec 2017 17:39:59 -0500 (EST)

branch: master
commit 23b5ae953d69e4a12d8368113971d721a090145c
Author: Ian Dunn <address@hidden>
Commit: Ian Dunn <address@hidden>

    Fix bug in keyword completion
    
    * org-edna.el (org-edna--collect-keywords): Use let* instead of let.
---
 org-edna.el | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/org-edna.el b/org-edna.el
index 33ba1cb..c01d354 100644
--- a/org-edna.el
+++ b/org-edna.el
@@ -1183,16 +1183,16 @@ the source buffer.  Finish with `C-c C-c' or abort with 
`C-c C-k'\n\n")
                               (point-max-marker)))
 
 (defun org-edna--collect-keywords (keyword-type &optional suffix)
-  (let ((suffix (or suffix ""))
-        (edna-sym-list)
-        (edna-rx (rx-to-string `(and
-                                 string-start
-                                 "org-edna-"
-                                 ,keyword-type
-                                 "/"
-                                 (submatch (one-or-more ascii))
-                                 ,suffix
-                                 string-end))))
+  (let* ((suffix (or suffix ""))
+         (edna-sym-list)
+         (edna-rx (rx-to-string `(and
+                                  string-start
+                                  "org-edna-"
+                                  ,keyword-type
+                                  "/"
+                                  (submatch (one-or-more ascii))
+                                  ,suffix
+                                  string-end))))
     (mapatoms
      (lambda (s)
        (when (and (string-match edna-rx (symbol-name s)) (fboundp s))



reply via email to

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