emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 54e2ed9: * lisp/emacs-lisp/eieio-compat.el: Typo ca


From: Stefan Monnier
Subject: [Emacs-diffs] master 54e2ed9: * lisp/emacs-lisp/eieio-compat.el: Typo caught by tests
Date: Wed, 04 Nov 2015 14:42:24 +0000

branch: master
commit 54e2ed97bf904eda2ee5ae9b7822288e10b3abc5
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * lisp/emacs-lisp/eieio-compat.el: Typo caught by tests
    
    (eieio--generic-static-object-generalizer): Fix typo.
    * test/automated/eieio-tests.el: Byte-compile it again.
    It looks like the underlying cause of bug#17852 was fixed in the mean time.
---
 lisp/emacs-lisp/eieio-compat.el |    2 +-
 test/automated/eieio-tests.el   |    4 ----
 2 files changed, 1 insertions(+), 5 deletions(-)

diff --git a/lisp/emacs-lisp/eieio-compat.el b/lisp/emacs-lisp/eieio-compat.el
index 638c475..06e65b9 100644
--- a/lisp/emacs-lisp/eieio-compat.el
+++ b/lisp/emacs-lisp/eieio-compat.el
@@ -143,7 +143,7 @@ Summary:
   ;; Give it a slightly higher priority than `class' so that the
   ;; interleaved list comes before the class's non-interleaved list.
   51 #'cl--generic-struct-tag
-  (lambda (tag _targets)
+  (lambda (tag &rest _)
     (and (symbolp tag) (boundp tag) (setq tag (symbol-value tag))
          (eieio--class-p tag)
          (let ((superclasses (eieio--class-precedence-list tag))
diff --git a/test/automated/eieio-tests.el b/test/automated/eieio-tests.el
index 5709a1b..915532b 100644
--- a/test/automated/eieio-tests.el
+++ b/test/automated/eieio-tests.el
@@ -898,7 +898,3 @@ Subclasses to override slot attributes.")
 (provide 'eieio-tests)
 
 ;;; eieio-tests.el ends here
-
-;; Local Variables:
-;; no-byte-compile: t
-;; End:



reply via email to

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