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

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

[elpa] externals/eev 159d491912: Make `ee-symbol-function' work on older


From: ELPA Syncer
Subject: [elpa] externals/eev 159d491912: Make `ee-symbol-function' work on older emacses.
Date: Fri, 26 Jul 2024 00:58:01 -0400 (EDT)

branch: externals/eev
commit 159d491912930f1849b9e5ab4c26cf03ad466e5e
Author: Eduardo Ochs <eduardoochs@gmail.com>
Commit: Eduardo Ochs <eduardoochs@gmail.com>

    Make `ee-symbol-function' work on older emacses.
---
 ChangeLog     | 3 +++
 VERSION       | 4 ++--
 eev-blinks.el | 5 +++--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f7ee840c14..2dae2bdf90 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2024-07-25  Eduardo Ochs  <eduardoochs@gmail.com>
 
+       * eev-blinks.el (ee-symbol-function): added a test for (fboundp
+       'closurep).
+
        * eev-tlinks.el (find-package-vc-install-links): new function.
 
 2024-07-24  Eduardo Ochs  <eduardoochs@gmail.com>
diff --git a/VERSION b/VERSION
index 992795efec..99208d2f90 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-Thu Jul 25 20:17:50 GMT 2024
-Thu Jul 25 17:17:50 -03 2024
+Fri Jul 26 02:41:47 GMT 2024
+Thu Jul 25 23:41:47 -03 2024
diff --git a/eev-blinks.el b/eev-blinks.el
index c71d40a034..c369a1db6b 100644
--- a/eev-blinks.el
+++ b/eev-blinks.el
@@ -21,7 +21,7 @@
 ;;
 ;; Author:     Eduardo Ochs <eduardoochs@gmail.com>
 ;; Maintainer: Eduardo Ochs <eduardoochs@gmail.com>
-;; Version:    20240724
+;; Version:    20240725
 ;; Keywords:   e-scripts
 ;;
 ;; Latest version: <http://anggtwu.net/eev-current/eev-blinks.el>
@@ -1704,7 +1704,8 @@ Hint: install the Debian package \"unicode-data\".")
 (defun ee-symbol-function (sym)
   "Experimental!!! See the comments in the source!"
   (let ((o (symbol-function sym)))
-    (if (closurep o)
+    (if (and (fboundp 'closurep)
+            (closurep o))
        (ee-closure-to-lambda o)
       o)))
 



reply via email to

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