]> git.eshelyaron.com Git - emacs.git/commitdiff
(cvs-mode-map): bind C-m, not RET
authorSam Steingold <sds@gnu.org>
Wed, 31 Oct 2001 17:39:07 +0000 (17:39 +0000)
committerSam Steingold <sds@gnu.org>
Wed, 31 Oct 2001 17:39:07 +0000 (17:39 +0000)
lisp/pcvs-defs.el

index 0d66176f8cfc4682b6f9cc4af16d189b144d942c..783e39004f8d1c438a3644419b607fb37a989f2d 100644 (file)
@@ -4,7 +4,7 @@
 
 ;; Author: Stefan Monnier <monnier@cs.yale.edu>
 ;; Keywords: pcl-cvs
-;; Revision: $Id: pcvs-defs.el,v 1.14 2001/05/18 16:59:52 sds Exp $
+;; Revision: $Id: pcvs-defs.el,v 1.15 2001/07/16 07:46:48 pj Exp $
 
 ;; This file is part of GNU Emacs.
 
@@ -352,7 +352,7 @@ This variable is buffer local and only used in the *cvs* buffer.")
     ("=" .     cvs-mode-diff)
     ("d" .     cvs-mode-diff-map)
     ;; keys that operate on individual files
-    ("\C-k"  cvs-mode-acknowledge)
+    ("\C-k" .  cvs-mode-acknowledge)
     ("A" .     cvs-mode-add-change-log-entry-other-window)
     ;;("B" .   cvs-mode-byte-compile-files)
     ("C" .     cvs-mode-commit-setup)
@@ -365,7 +365,7 @@ This variable is buffer local and only used in the *cvs* buffer.")
     ("c" .     cvs-mode-commit)
     ("e" .     cvs-mode-examine)
     ("f" .     cvs-mode-find-file)
-    ([RET] .   cvs-mode-find-file)
+    ("\C-m" .  cvs-mode-find-file)
     ("i" .     cvs-mode-ignore)
     ("l" .     cvs-mode-log)
     ("o" .     cvs-mode-find-file-other-window)