branch: externals/cursory
commit a9076f6a0f06ec4f0f572aaf3a4d318959bac918
Author: Protesilaos Stavrou <[email protected]>
Commit: Protesilaos Stavrou <[email protected]>
Use memq instead of member in one example
---
README.org | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.org b/README.org
index 5061f73a8c..f96ae223d7 100644
--- a/README.org
+++ b/README.org
@@ -235,7 +235,7 @@ invoked without any arguments), which is called after the
command
(defun my-cursory-change-color-disable-line-numbers ()
"Disable line numbers if the Cursory preset is `presentation' or `focus'."
- (when (member cursory-last-selected-preset '(presentation focus))
+ (when (memq cursory-last-selected-preset '(presentation focus))
(display-line-numbers-mode -1)))
#+end_src