(ctl-x-map): Remove the C-x U binding added recently.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 21 May 2003 15:29:36 +0000 (15:29 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 21 May 2003 15:29:36 +0000 (15:29 +0000)
lisp/simple.el

index 64b56d5..c0796bd 100644 (file)
@@ -1025,7 +1025,9 @@ A numeric argument serves as a repeat count.
 Contrary to `undo', this will not redo a previous undo."
   (interactive "*p")
   (let ((undo-no-redo t)) (undo arg)))
-(define-key ctl-x-map "U" 'undo-only)
+;; Richard said that we should not use C-x <uppercase letter> and I have
+;; no idea whereas to bind it.  Any suggestion welcome.  -stef
+;; (define-key ctl-x-map "U" 'undo-only)
 
 (defvar pending-undo-list nil
   "Within a run of consecutive undo commands, list remaining to be undone.")