projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0092365
)
; * lisp/emacs-lisp/shortdoc.el (list): Move misplaced `remq` entry
author
Mattias Engdegård
<mattiase@acm.org>
Wed, 2 Aug 2023 09:21:37 +0000
(11:21 +0200)
committer
Mattias Engdegård
<mattiase@acm.org>
Wed, 2 Aug 2023 09:21:37 +0000
(11:21 +0200)
lisp/emacs-lisp/shortdoc.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/shortdoc.el
b/lisp/emacs-lisp/shortdoc.el
index e23db8e999cd3d832a00c0d39216f7ca73d8a108..d1cf63317bfaf6eaed4b4e9d90ee31b9ef7d8f3a 100644
(file)
--- a/
lisp/emacs-lisp/shortdoc.el
+++ b/
lisp/emacs-lisp/shortdoc.el
@@
-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"