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
4cb1bcc2
Commit
4cb1bcc2
authored
Jan 05, 2001
by
Dave Love
Browse files
(remove, remq): Remove.
parent
f1ade7d3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/emacs-lisp/cl-seq.el
lisp/emacs-lisp/cl-seq.el
+0
-3
No files found.
lisp/ChangeLog
View file @
4cb1bcc2
2001-01-05 Dave Love <fx@gnu.org>
* emacs-lisp/cl-seq.el (remove, remq): Remove.
2001-01-05 Gerd Moellmann <gerd@gnu.org>
* mouse-drag.el (mouse-drag-safe-scroll): Bind
...
...
lisp/emacs-lisp/cl-seq.el
View file @
4cb1bcc2
...
...
@@ -322,9 +322,6 @@ This is a destructive function; it reuses the storage of SEQ whenever possible.
Keywords supported: :key :count :start :end :from-end"
(
apply
'delete*
nil
cl-list
:if-not
cl-pred
cl-keys
))
(
defun
remove
(
x
y
)
(
remove*
x
y
:test
'equal
))
(
defun
remq
(
x
y
)
(
if
(
memq
x
y
)
(
delq
x
(
copy-list
y
))
y
))
(
defun
remove-duplicates
(
cl-seq
&rest
cl-keys
)
"Return a copy of SEQ with all duplicate elements removed.
Keywords supported: :test :test-not :key :start :end :from-end"
...
...
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