diff options
| author | Eli Zaretskii | 2011-02-04 11:12:32 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2011-02-04 11:12:32 +0200 |
| commit | 6f52d86e958f763406796ed2f97f2b4a678f4166 (patch) | |
| tree | e92bf5704f972493245b762e7e01489b8a570a95 | |
| parent | e3a70a8a451b704f865b8a2e65c838f66b946c8c (diff) | |
| download | emacs-6f52d86e958f763406796ed2f97f2b4a678f4166.tar.gz emacs-6f52d86e958f763406796ed2f97f2b4a678f4166.zip | |
Fix bug #7977 with special-mode-map in arc-mode.el.
arc-mode.el (archive-mode-map): Fix a typo in last change.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/arc-mode.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 794faaa0ec8..72d9ab45011 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-02-04 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * arc-mode.el (archive-mode-map): Fix a typo in last change. | ||
| 4 | |||
| 1 | 2011-02-03 Sam Steingold <sds@gnu.org> | 5 | 2011-02-03 Sam Steingold <sds@gnu.org> |
| 2 | 6 | ||
| 3 | * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom): | 7 | * progmodes/gdb-mi.el (gdb-breakpoints-list-handler-custom): |
diff --git a/lisp/arc-mode.el b/lisp/arc-mode.el index df96a1920e6..412fed102b7 100644 --- a/lisp/arc-mode.el +++ b/lisp/arc-mode.el | |||
| @@ -339,7 +339,7 @@ be added." | |||
| 339 | (defvar archive-local-name nil "Name of local copy of remote archive.") | 339 | (defvar archive-local-name nil "Name of local copy of remote archive.") |
| 340 | (defvar archive-mode-map | 340 | (defvar archive-mode-map |
| 341 | (let ((map (make-keymap))) | 341 | (let ((map (make-keymap))) |
| 342 | (set-keymap-parent map 'special-mode-map) | 342 | (set-keymap-parent map special-mode-map) |
| 343 | (define-key map " " 'archive-next-line) | 343 | (define-key map " " 'archive-next-line) |
| 344 | (define-key map "a" 'archive-alternate-display) | 344 | (define-key map "a" 'archive-alternate-display) |
| 345 | ;;(define-key map "c" 'archive-copy) | 345 | ;;(define-key map "c" 'archive-copy) |