branch: externals/csharp-mode
commit f80eace6e1e87cefe38b18576502ad4915c0fa47
Author: Jostein Kjønigsen <jost...@kjonigsen.net>
Commit: Jostein Kjønigsen <jost...@kjonigsen.net>

    Revert "Fix runtime warnings about obsolete Emacs-functions."
    
    This reverts commit 42ca773623fa455243e5b78dc4659cf81c65a00c.
    
    Replacing a warning with an error is *not* an improvement.
---
 csharp-mode.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/csharp-mode.el b/csharp-mode.el
index 1ada38b..dc3101d 100644
--- a/csharp-mode.el
+++ b/csharp-mode.el
@@ -2647,7 +2647,7 @@ this fn will be something like this:
      (\"(bottom)\"     . 1))
 
 "
-  (cl-flet ((helper (list new)
+  (flet ((helper (list new)
                  (if (null list) new
                    (let* ((elt (car list))
                           (topic (csharp--make-plural (csharp--first-word (car 
elt))))
@@ -2914,7 +2914,7 @@ out into multiple submenus.
 
 "
   (let ((counts (csharp--imenu-counts menu-alist)))
-    (cl-flet ((helper
+    (flet ((helper
             (list new)
             (if (null list)
                 new

Reply via email to