branch: elpa/emacsql
commit dacc764567f08dc2bfe1d377fdd5cc3c7e8842da
Author: Jonas Bernoulli <[email protected]>
Commit: Jonas Bernoulli <[email protected]>
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")