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

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

[nongnu] elpa/emacsql dacc764567 08/11: Use `oref' instead of `eieio-ore


From: ELPA Syncer
Subject: [nongnu] elpa/emacsql dacc764567 08/11: Use `oref' instead of `eieio-oref'
Date: Fri, 19 Jan 2024 19:00:24 -0500 (EST)

branch: elpa/emacsql
commit dacc764567f08dc2bfe1d377fdd5cc3c7e8842da
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Use `oref' instead of `eieio-oref'
    
    Likewise use `oset' instead of `eieio-oset'.
---
 emacsql.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/emacsql.el b/emacsql.el
index 4a1c3a155f..755e985c60 100644
--- a/emacsql.el
+++ b/emacsql.el
@@ -149,9 +149,9 @@ MESSAGE should not have a newline on the end."
 Using this function to do it anyway, means additionally using a
 misnamed and obsolete accessor function."
   (and (slot-boundp this 'handle)
-       (eieio-oref this 'handle)))
+       (oref this handle)))
 (cl-defmethod (setf emacsql-process) (value (this emacsql-connection))
-  (eieio-oset this 'handle value))
+  (oset this handle value))
 (make-obsolete 'emacsql-process "underlying slot is for internal use only."
                "EmacSQL 4.0.0")
 



reply via email to

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