]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/cl|eieio: Minor tweaks
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 26 Mar 2015 17:32:45 +0000 (13:32 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 26 Mar 2015 17:32:45 +0000 (13:32 -0400)
* lisp/emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Silence byte-compiler.

* lisp/emacs-lisp/eieio.el (defclass): Change internal name so as to make
sure only EIEIO files should have "eieio--" prefixes in their .elc.

lisp/ChangeLog
lisp/emacs-lisp/cl-macs.el
lisp/emacs-lisp/eieio.el

index 37ac1c5f3c8f796aff405bd0d036bbbf2a92ed1d..294bcfe7fb6fac6009d97d129582e7331090abc8 100644 (file)
@@ -1,3 +1,10 @@
+2015-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/eieio.el (defclass): Change internal name so as to make
+       sure only EIEIO files should have "eieio--" prefixes in their .elc.
+
+       * emacs-lisp/cl-macs.el (cl-dolist, cl-dotimes): Silence byte-compiler.
+
 2015-03-26  Boruch Baum  <boruch_baum@gmx.com>  (tiny change)
 
        * bookmark.el (bookmark-show-all-annotations): Sort them (bug#20177).
index 5d55a1d45799e39e274973c2f4fe35501ef3aa06..f8ddc00c3bf90e6e363c04ce2c7e8304990a3393 100644 (file)
@@ -1752,7 +1752,7 @@ An implicit nil block is established around the loop.
   (declare (debug ((symbolp form &optional form) cl-declarations body))
            (indent 1))
   (let ((loop `(dolist ,spec ,@body)))
-    (if (advice-member-p #'cl--wrap-in-nil-block 'dolist)
+    (if (advice-member-p 'cl--wrap-in-nil-block 'dolist)
         loop `(cl-block nil ,loop))))
 
 ;;;###autoload
@@ -1765,7 +1765,7 @@ nil.
 \(fn (VAR COUNT [RESULT]) BODY...)"
   (declare (debug cl-dolist) (indent 1))
   (let ((loop `(dotimes ,spec ,@body)))
-    (if (advice-member-p #'cl--wrap-in-nil-block 'dotimes)
+    (if (advice-member-p 'cl--wrap-in-nil-block 'dotimes)
         loop `(cl-block nil ,loop))))
 
 (defvar cl--tagbody-alist nil)
index 27725148ff603d09ecaf9064872f8e25a2a04f4e..bca53c0c8922ee5863df39241476f4ee55521e00 100644 (file)
@@ -130,7 +130,7 @@ and reference them using the function `class-option'."
       (error "Method invocation order %s is not allowed" io)))
 
   (let ((testsym1 (intern (concat (symbol-name name) "-p")))
-        (testsym2 (intern (format "eieio--childp--%s" name)))
+        (testsym2 (intern (format "%s--eieio-childp" name)))
         (accessors ()))
 
     ;; Collect the accessors we need to define.