mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-20 11:57:36 +00:00
; * lisp/emacs-lisp/shortdoc.el (list): Move misplaced remq entry
This commit is contained in:
parent
009236502e
commit
cda4396ade
1 changed files with 2 additions and 2 deletions
|
|
@ -642,6 +642,8 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
|
|||
(delete
|
||||
:eval (delete 2 (list 1 2 3 4))
|
||||
:eval (delete "a" (list "a" "b" "c" "d")))
|
||||
(remq
|
||||
:eval (remq 'b '(a b c)))
|
||||
(remove
|
||||
:eval (remove 2 '(1 2 3 4))
|
||||
:eval (remove "a" '("a" "b" "c" "d")))
|
||||
|
|
@ -686,8 +688,6 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
|
|||
(member
|
||||
:eval (member 2 '(1 2 3))
|
||||
:eval (member "b" '("a" "b" "c")))
|
||||
(remq
|
||||
:eval (remq 'b '(a b c)))
|
||||
(member-ignore-case
|
||||
:eval (member-ignore-case "foo" '("bar" "Foo" "zot")))
|
||||
"Association Lists"
|
||||
|
|
|
|||
Loading…
Reference in a new issue