diff lisp/vc.el @ 1575:ae13f4027ebd

(vc-cancel-version): Use yes-or-no-p.
author Richard M. Stallman <rms@gnu.org>
date Sun, 08 Nov 1992 18:58:17 +0000
parents 64f5e84c822b
children e3c02a517030
line wrap: on
line diff
--- a/lisp/vc.el	Sat Nov 07 20:36:45 1992 +0000
+++ b/lisp/vc.el	Sun Nov 08 18:58:17 1992 +0000
@@ -5,7 +5,7 @@
 ;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
 ;; Version: 4.0
 
-;;	$Id: vc.el,v 1.14 1992/10/26 05:33:20 rms Exp rms $	
+;;	$Id: vc.el,v 1.15 1992/10/28 09:33:04 rms Exp rms $	
 
 ;; This file is part of GNU Emacs.
 
@@ -739,7 +739,7 @@
   (let ((target (vc-your-latest-version (buffer-file-name))))
     (if (null target)
 	(error "You didn't check in the last change."))
-    (and (y-or-n-p (format "Remove version %s from master? " target))
+    (and (yes-or-no-p (format "Remove version %s from master? " target))
       (vc-backend-uncheck (buffer-file-name) target)))
     (if norevert
 	(vc-mode-line (buffer-file-name))