diff options
| author | Glenn Morris | 2008-04-07 07:25:40 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-04-07 07:25:40 +0000 |
| commit | 763f360c0cfa94503b4d2eadff63fe53b8221f55 (patch) | |
| tree | ca62963f065ebdfabc973105d921f7e20204f7cb | |
| parent | b731690e40882e7c40682b90861b8ce69db33d6e (diff) | |
| download | emacs-763f360c0cfa94503b4d2eadff63fe53b8221f55.tar.gz emacs-763f360c0cfa94503b4d2eadff63fe53b8221f55.zip | |
(calendar-mode-map): Replace use of kbd.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/calendar/calendar.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a08e807793a..3783b4aafa4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2008-04-07 Glenn Morris <rgm@gnu.org> | 1 | 2008-04-07 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * calendar/calendar.el (calendar-mode-map): Replace use of kbd. | ||
| 4 | |||
| 3 | * calendar.el (diary-view-entries-initially-flag): Rename | 5 | * calendar.el (diary-view-entries-initially-flag): Rename |
| 4 | view-diary-entries-initially. Keep old name as alias, update users. | 6 | view-diary-entries-initially. Keep old name as alias, update users. |
| 5 | (calendar-mark-diary-entries-flag): Rename | 7 | (calendar-mark-diary-entries-flag): Rename |
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index aa5338e9e78..8e8942feeea 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -1704,7 +1704,7 @@ after the inserted text. Returns t." | |||
| 1704 | (define-key map "S" 'calendar-sunrise-sunset) | 1704 | (define-key map "S" 'calendar-sunrise-sunset) |
| 1705 | (define-key map "M" 'calendar-phases-of-moon) | 1705 | (define-key map "M" 'calendar-phases-of-moon) |
| 1706 | (define-key map " " 'scroll-other-window) | 1706 | (define-key map " " 'scroll-other-window) |
| 1707 | (define-key map (kbd "DEL") 'scroll-other-window-down) ; FIXME | 1707 | (define-key map "\d" 'scroll-other-window-down) |
| 1708 | (define-key map "\C-c\C-l" 'calendar-redraw) | 1708 | (define-key map "\C-c\C-l" 'calendar-redraw) |
| 1709 | (define-key map "." 'calendar-goto-today) | 1709 | (define-key map "." 'calendar-goto-today) |
| 1710 | (define-key map "o" 'calendar-other-month) | 1710 | (define-key map "o" 'calendar-other-month) |