1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-13 16:38:14 +00:00

(solitaire-mode-map): Bind "\r" rather than [return]. (Bug#1031)

This commit is contained in:
Glenn Morris 2008-09-27 20:05:56 +00:00
parent f4498b9e4f
commit e64c74f219
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2008-09-27 Glenn Morris <rgm@gnu.org>
* play/solitaire.el (solitaire-mode-map): Bind "\r" rather
than [return]. (Bug#1031)
2008-09-27 Peter Dyballa <Peter_Dyballa@Freenet.DE>
* calendar/calendar.el (solar-sunrises-buffer): Fix typo.

View File

@ -1,7 +1,7 @@
;;; solitaire.el --- game of solitaire in Emacs Lisp
;; Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005,
;; 2006, 2007, 2008 Free Software Foundation, Inc.
;; Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
;; 2008 Free Software Foundation, Inc.
;; Author: Jan Schormann <Jan.Schormann@rechen-gilde.de>
;; Created: Fri afternoon, Jun 3, 1994
@ -50,7 +50,7 @@
(define-key map "\C-b" 'solitaire-left)
(define-key map "\C-p" 'solitaire-up)
(define-key map "\C-n" 'solitaire-down)
(define-key map [return] 'solitaire-move)
(define-key map "\r" 'solitaire-move)
(define-key map [remap undo] 'solitaire-undo)
(define-key map " " 'solitaire-do-check)
(define-key map "q" 'quit-window)