diff options
| author | Glenn Morris | 2008-09-27 20:05:56 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-09-27 20:05:56 +0000 |
| commit | e64c74f219cd2376f6a62e1b5800b17a86c818a0 (patch) | |
| tree | 1f8f983263ebca482b1b8fa23a13a6eef61bcaac | |
| parent | f4498b9e4fd731e2d3c524a6cdf967a4834ef040 (diff) | |
| download | emacs-e64c74f219cd2376f6a62e1b5800b17a86c818a0.tar.gz emacs-e64c74f219cd2376f6a62e1b5800b17a86c818a0.zip | |
(solitaire-mode-map): Bind "\r" rather than [return]. (Bug#1031)
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/play/solitaire.el | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 148e6558b18..beea2461021 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-27 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * play/solitaire.el (solitaire-mode-map): Bind "\r" rather | ||
| 4 | than [return]. (Bug#1031) | ||
| 5 | |||
| 1 | 2008-09-27 Peter Dyballa <Peter_Dyballa@Freenet.DE> | 6 | 2008-09-27 Peter Dyballa <Peter_Dyballa@Freenet.DE> |
| 2 | 7 | ||
| 3 | * calendar/calendar.el (solar-sunrises-buffer): Fix typo. | 8 | * calendar/calendar.el (solar-sunrises-buffer): Fix typo. |
diff --git a/lisp/play/solitaire.el b/lisp/play/solitaire.el index c6ee9b62c3c..dd723b8e41f 100644 --- a/lisp/play/solitaire.el +++ b/lisp/play/solitaire.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; solitaire.el --- game of solitaire in Emacs Lisp | 1 | ;;; solitaire.el --- game of solitaire in Emacs Lisp |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, | 3 | ;; Copyright (C) 1994, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
| 4 | ;; 2006, 2007, 2008 Free Software Foundation, Inc. | 4 | ;; 2008 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Jan Schormann <Jan.Schormann@rechen-gilde.de> | 6 | ;; Author: Jan Schormann <Jan.Schormann@rechen-gilde.de> |
| 7 | ;; Created: Fri afternoon, Jun 3, 1994 | 7 | ;; Created: Fri afternoon, Jun 3, 1994 |
| @@ -50,7 +50,7 @@ | |||
| 50 | (define-key map "\C-b" 'solitaire-left) | 50 | (define-key map "\C-b" 'solitaire-left) |
| 51 | (define-key map "\C-p" 'solitaire-up) | 51 | (define-key map "\C-p" 'solitaire-up) |
| 52 | (define-key map "\C-n" 'solitaire-down) | 52 | (define-key map "\C-n" 'solitaire-down) |
| 53 | (define-key map [return] 'solitaire-move) | 53 | (define-key map "\r" 'solitaire-move) |
| 54 | (define-key map [remap undo] 'solitaire-undo) | 54 | (define-key map [remap undo] 'solitaire-undo) |
| 55 | (define-key map " " 'solitaire-do-check) | 55 | (define-key map " " 'solitaire-do-check) |
| 56 | (define-key map "q" 'quit-window) | 56 | (define-key map "q" 'quit-window) |