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

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

[elpa] master 3ec62ab 006/177: fix: please older emacsen, don't use LETR


From: João Távora
Subject: [elpa] master 3ec62ab 006/177: fix: please older emacsen, don't use LETREC after all
Date: Sat, 28 Mar 2015 15:40:26 +0000

branch: master
commit 3ec62aba0dae49d05305658a61e8b3ba29c08b72
Author: João Távora <address@hidden>
Commit: João Távora <address@hidden>

    fix: please older emacsen, don't use LETREC after all
    
    also fix some compiler warnings
---
 yasnippet.el |   38 +++++++++++++++++++-------------------
 1 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/yasnippet.el b/yasnippet.el
index 6ee8a19..db529e8 100644
--- a/yasnippet.el
+++ b/yasnippet.el
@@ -657,6 +657,14 @@ snippet itself contains a condition that returns the symbol
 (defvar yas-minor-mode-map (yas--init-minor-keymap)
   "The keymap used when `yas-minor-mode' is active.")
 
+(defvar yas-extra-modes nil
+  "If non-nil, also lookup snippets for this/these modes.
+
+Can be a symbol or a list of symbols.
+
+This variable probably makes more sense as buffer-local, so
+ensure your use `make-local-variable' when you set it.")
+
 (defvar yas--tables (make-hash-table)
   "A hash table of mode symbols to `yas--table' objects.")
 
@@ -696,16 +704,17 @@ defined direct keybindings to the command
 (defun yas--modes-to-activate ()
   "Compute list of mode symbols that are active for `yas-expand'
 and friends."
-  (letrec ((dfs (lambda (mode &optional explored)
-                  (push mode explored)
-                  (cons mode
-                        (loop for neighbour
-                              in (remove nil (cons (get mode
-                                                        'derived-mode-parent)
-                                                   (gethash mode 
yas--parents)))
-
-                              unless (memq neighbour explored)
-                              append (funcall dfs neighbour explored))))))
+  (let (dfs)
+    (setq dfs (lambda (mode &optional explored)
+                (push mode explored)
+                (cons mode
+                      (loop for neighbour
+                            in (remove nil (cons (get mode
+                                                      'derived-mode-parent)
+                                                 (gethash mode yas--parents)))
+
+                            unless (memq neighbour explored)
+                            append (funcall dfs neighbour explored)))))
     (remove-duplicates (append yas-extra-modes
                                (funcall dfs major-mode)))))
 
@@ -1269,14 +1278,6 @@ return an expression that when evaluated will issue an 
error."
                 keybinding (error-message-string err))
        nil))))
 
-(defvar yas-extra-modes nil
-  "If non-nil, also lookup snippets for this/these modes.
-
-Can be a symbol or a list of symbols.
-
-This variable probably makes more sense as buffer-local, so
-ensure your use `make-local-variable' when you set it.")
-
 (defun yas--table-get-create (mode)
   "Get or create the snippet table corresponding to MODE."
   (let ((table (gethash mode
@@ -1879,7 +1880,6 @@ loading."
       ;;
       (setq yas--tables (make-hash-table))
       (setq yas--parents (make-hash-table))
-      (setq yas--ancestors (make-hash-table))
 
       ;; Before killing `yas--menu-table' use its keys to cleanup the
       ;; mode menu parts of `yas--minor-mode-menu' (thus also cleaning



reply via email to

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