emacs-super-duper-yes-or-no

Replace the yes-or-no function with an even more demanding yes or no prompt, rather than with y-or-n.
Log | Files | Refs | LICENSE

commit de2cce9c16bdebed0848f3c407c2f5ea14b697cb
parent 0b87b3cf9d87c35d0afc5a0ec9bbe074f7b39bf6
Author: Yuval Langer <yuvallangerontheroad@gmail.com>
Date:   Sat,  7 Oct 2023 06:19:29 +0300

Fix documentation.

Diffstat:
MREADME.org | 6+++---
Msuper-duper-yes-or-no.el | 6+++---
2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.org b/README.org @@ -62,21 +62,21 @@ still only up on https://codeberg.org/ - To replace yes-or-no-p with random sequences of words: #+begin_src elisp - (defalias 'yes-or-no + (defalias 'yes-or-no-p 'super-duper-yes-or-no-yes-or-no-words-p) #+end_src - To replace yes-or-no-p with uppercase letters hunts: #+begin_src elisp - (defalias 'yes-or-no + (defalias 'yes-or-no-p 'super-duper-yes-or-no-yes-or-no-toggle-case-p) #+end_src - To replace yes-or-no-p with arithmetic problems: #+begin_src elisp - (defalias 'yes-or-no + (defalias 'yes-or-no-p 'super-duper-yes-or-no-yes-or-no-arithmetic-problem-p) #+end_src diff --git a/super-duper-yes-or-no.el b/super-duper-yes-or-no.el @@ -26,17 +26,17 @@ ;; ;; To replace yes-or-no-p with random sequences of words: ;; -;; (defalias 'yes-or-no +;; (defalias 'yes-or-no-p ;; 'super-duper-yes-or-no-yes-or-no-words-p) ;; ;; To replace yes-or-no-p with uppercase letters hunts: ;; -;; (defalias 'yes-or-no +;; (defalias 'yes-or-no-p ;; 'super-duper-yes-or-no-yes-or-no-toggle-case-p) ;; ;; To replace yes-or-no-p with arithmetic problems: ;; -;; (defalias 'yes-or-no +;; (defalias 'yes-or-no-p ;; 'super-duper-yes-or-no-yes-or-no-arithmetic-problem-p) ;;; Code: