branch: externals/marginalia
commit 445d2832a2f06484ad28d9b55676c52d63cd0a46
Author: Daniel Mendler <[email protected]>
Commit: Daniel Mendler <[email protected]>
README: Update helper commands (Use remq instead of delq)
---
README.org | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.org b/README.org
index 5a10933..a1dd053 100644
--- a/README.org
+++ b/README.org
@@ -77,7 +77,7 @@ command. Replace =builtin= by =none= to disable annotators by
default.
(interactive)
(mapc
(lambda (x)
- (setcdr x (cons 'builtin (delq 'builtin (cdr x)))))
+ (setcdr x (cons 'builtin (remq 'builtin (cdr x)))))
marginalia-annotator-registry))
#+end_src
@@ -89,8 +89,8 @@ those using this command.
(interactive)
(mapc
(lambda (x)
- (setcdr x (append (nreverse (delq 'none
- (delq 'builtin (cdr x))))
+ (setcdr x (append (reverse (remq 'none
+ (remq 'builtin (cdr x))))
'(builtin none))))
marginalia-annotator-registry))
#+end_src