]> git.eshelyaron.com Git - emacs.git/commitdiff
(eql): Remove. It's a builtin already.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 22 May 2005 20:15:05 +0000 (20:15 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 22 May 2005 20:15:05 +0000 (20:15 +0000)
lisp/ChangeLog
lisp/emacs-lisp/cl.el

index 58dcb5f6ca2665af388f0876ab18b5ce524df008..12d0697044b04a7bfad7e22734de70d2a46f6bcb 100644 (file)
@@ -1,3 +1,7 @@
+2005-05-22  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/cl.el (eql): Remove.  It's a builtin already.
+
 2005-05-22  Richard M. Stallman  <rms@gnu.org>
 
        * help.el (describe-key): Move print-help-return-message call
        for describing the structure was 95% identical to that of
        `imenu--generic-function'.  Unify it there.
 
-       * progmodes/make-mode.el (makefile-imenu-generic-expression): Use
-       function to find dependencies, because regexp alone is so complex,
+       * progmodes/make-mode.el (makefile-imenu-generic-expression):
+       Use function to find dependencies, because regexp alone is so complex,
        it easily goes into an endless loop.
        (makefile-makepp-mode): Also add submenu for Perl functions
        defined in the makefile.
index 8385af601af665301086543a8b37ae9dcad6cc0e..704d3f8dcd9ff3ccffafededf2f0109d290d0980 100644 (file)
@@ -112,16 +112,6 @@ a future Emacs interpreter will be able to use it.")
 (defun cl-cannot-unload ()
   (error "Cannot unload the feature `cl'"))
 
-;;; Predicates.
-
-(defun eql (a b)    ; See compiler macro in cl-macs.el
-  "Return t if the two args are the same Lisp object.
-Floating-point numbers of equal value are `eql', but they may not be `eq'."
-  (if (numberp a)
-      (equal a b)
-    (eq a b)))
-
-
 ;;; Generalized variables.  These macros are defined here so that they
 ;;; can safely be used in .emacs files.
 
@@ -705,5 +695,5 @@ Return a copy of TREE with all elements `eql' to OLD replaced by NEW.
 
 (run-hooks 'cl-load-hook)
 
-;;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851
+;; arch-tag: 5f07fa74-f153-4524-9303-21f5be125851
 ;;; cl.el ends here