home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / may94 / util / edit / jade.lha / Jade / lisp / ask.jl < prev    next >
Lisp/Scheme  |  1994-04-16  |  2KB  |  50 lines

  1. ;;;; ask.jl -- Boolean prompting
  2. ;;;  Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
  3.  
  4. ;;; This file is part of Jade.
  5.  
  6. ;;; Jade is free software; you can redistribute it and/or modify it
  7. ;;; under the terms of the GNU General Public License as published by
  8. ;;; the Free Software Foundation; either version 2, or (at your option)
  9. ;;; any later version.
  10.  
  11. ;;; Jade is distributed in the hope that it will be useful, but
  12. ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. ;;; GNU General Public License for more details.
  15.  
  16. ;;; You should have received a copy of the GNU General Public License
  17. ;;; along with Jade; see the file COPYING.  If not, write to
  18. ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  
  20. (defun ask-yes-or-no (question-str)
  21.   "(ask-yes-or-no QUESTION)
  22. Prompts the user for a yes or no answer to QUESTION, returns t for yes."
  23.   (let*
  24.       ((answer (prompt (concat question-str " (yes or no) "))))
  25.     (string= "yes" answer)))
  26.  
  27. (setq y-or-n-keymap (make-keylist))
  28. (bind-keys y-or-n-keymap
  29.   "n" '(throw 'ask nil)
  30.   "y" '(throw 'ask t))
  31.  
  32. (defun ask-y-or-n (question-str)
  33.   "(ask-y-or-n QUESTION)
  34. Prompts the user for a single keypress response, either `y' or `n' to the
  35. string QUESTION, returns t for `y'."
  36.   (let*
  37.       (answer
  38.        (old-u-k-h unbound-key-hook)
  39.        (old-k-p keymap-path)
  40.        (title-string (concat question-str " (y or n)")))
  41.     (setq unbound-key-hook
  42.       (cons #'(lambda () (beep) (title title-string) t) nil))
  43.     (setq keymap-path '(y-or-n-keymap))
  44.     (title title-string)
  45.     (setq answer (catch 'ask (recursive-edit)))
  46.     (setq keymap-path old-k-p)
  47.     (setq unbound-key-hook old-u-k-h)
  48.     answer))
  49.  
  50.