Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6cd0254f
Commit
6cd0254f
authored
May 22, 2005
by
Stefan Monnier
Browse files
(eql): Remove. It's a builtin already.
parent
3187ba1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
13 deletions
+7
-13
lisp/ChangeLog
lisp/ChangeLog
+6
-2
lisp/emacs-lisp/cl.el
lisp/emacs-lisp/cl.el
+1
-11
No files found.
lisp/ChangeLog
View file @
6cd0254f
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
...
...
@@ -105,8 +109,8 @@
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.
...
...
lisp/emacs-lisp/cl.el
View file @
6cd0254f
...
...
@@ -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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment