summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/shortdoc.el
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2023-08-02 11:21:37 +0200
committerMattias EngdegÄrd <mattiase@acm.org>2023-08-02 11:21:37 +0200
commitcda4396ade14aae126b06d7ea559fc0fcb4324fe (patch)
treed50fd0f63875c3e75d3d57f7219498eb103f4a0f /lisp/emacs-lisp/shortdoc.el
parent009236502ef960c18e0e0070fdbc4fe6e4adc969 (diff)
downloademacs-cda4396ade14aae126b06d7ea559fc0fcb4324fe.tar.gz
emacs-cda4396ade14aae126b06d7ea559fc0fcb4324fe.tar.bz2
emacs-cda4396ade14aae126b06d7ea559fc0fcb4324fe.zip
; * lisp/emacs-lisp/shortdoc.el (list): Move misplaced `remq` entry
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r--lisp/emacs-lisp/shortdoc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index e23db8e999c..d1cf63317bf 100644
--- 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"