* lisp/nnheaderxm.el (nnheader-xmas-Y-or-n-p): New function.
authoryamaoka <yamaoka>
Tue, 13 Oct 1998 08:45:52 +0000 (08:45 +0000)
committeryamaoka <yamaoka>
Tue, 13 Oct 1998 08:45:52 +0000 (08:45 +0000)
It will be used for the substitute of `nnheader-Y-or-n-p' under
XEmacs.
* lisp/nnheader.el (nnheader-Y-or-n-p): Rewrite for Emacs 19 or
later except for XEmacs.

lisp/nnheader.el
lisp/nnheaderxm.el

index 3122dd8..99ef061 100644 (file)
@@ -809,17 +809,20 @@ find-file-hooks, etc.
 
 (defun nnheader-Y-or-n-p (prompt)
   "Ask user a \"Y/n\" question. Return t if answer is neither \"n\", \"N\" nor \"C-g\"."
-  (if (and (featurep 'xemacs) (should-use-dialog-box-p))
-      (yes-or-no-p-dialog-box prompt)
-    (let ((cursor-in-echo-area t)
-         (echo-keystrokes 0)
-         (log-message-max-size 0)
-         (inhibit-quit t)
-         message-log-max ans)
+  (let ((cursor-in-echo-area t)
+       (echo-keystrokes 0)
+       (inhibit-quit t)
+       ans)
+    (let (message-log-max)
       (while (not (memq ans '(?\  ?N ?Y ?\C-g ?\e ?\n ?\r ?n ?y)))
        (message "%s(Y/n) " prompt)
-       (setq ans (read-char-exclusive)))
-      (not (memq ans '(?\C-g ?N ?n))))))
+       (setq ans (read-char-exclusive))))
+    (if (memq ans '(?\C-g ?N ?n))
+       (progn
+         (message "%s(Y/n) No" prompt)
+         nil)
+      (message "%s(Y/n) Yes" prompt)
+      t)))
 
 (when (string-match "XEmacs\\|Lucid" emacs-version)
   (require 'nnheaderxm))
index f788042..7c1435c 100644 (file)
       (,function ,@args))
    time repeat))
 
+(defun nnheader-xmas-Y-or-n-p (prompt)
+  "Ask user a \"Y/n\" question. Return t if answer is neither \"n\", \"N\" nor \"C-g\"."
+  (if (should-use-dialog-box-p)
+      (yes-or-no-p-dialog-box prompt)
+    (let ((cursor-in-echo-area t)
+         (echo-keystrokes 0)
+         (inhibit-quit t)
+         event)
+      (message "%s(Y/n) " prompt)
+      (while (or (not (key-press-event-p (setq event (next-command-event))))
+                (not (or (eq (event-key event) 'escape)
+                         (memq (event-to-character event)
+                               '(?\  ?N ?Y ?\C-g ?\e ?\n ?\r ?n ?y))))))
+      (if (memq (event-key event) '(?\C-g ?N ?n))
+         (progn
+           (message "%s(Y/n) No" prompt)
+           nil)
+       (message "%s(Y/n) Yes" prompt)
+       t))))
+
 (fset 'nnheader-run-at-time 'nnheader-xmas-run-at-time)
 (fset 'nnheader-cancel-timer 'delete-itimer)
 (fset 'nnheader-cancel-function-timers 'ignore)
+(fset 'nnheader-Y-or-n-p 'nnheader-xmas-Y-or-n-p)
 
 (provide 'nnheaderxm)