Function: 5x5-y-or-n-p

5x5-y-or-n-p is a byte-compiled function defined in 5x5.el.gz.

Signature

(5x5-y-or-n-p PROMPT)

Documentation

5x5 wrapper for y-or-n-p which respects the 5x5-hassle-me setting.

Source Code

;; Defined in /usr/src/emacs/lisp/play/5x5.el.gz
(defun 5x5-y-or-n-p (prompt)
  "5x5 wrapper for `y-or-n-p' which respects the `5x5-hassle-me' setting."
  (if 5x5-hassle-me
      (y-or-n-p prompt)
    t))