From 763f360c0cfa94503b4d2eadff63fe53b8221f55 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Mon, 7 Apr 2008 07:25:40 +0000 Subject: [PATCH] (calendar-mode-map): Replace use of kbd. --- lisp/ChangeLog | 2 ++ lisp/calendar/calendar.el | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a08e807793..3783b4aafa 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2008-04-07 Glenn Morris + * calendar/calendar.el (calendar-mode-map): Replace use of kbd. + * calendar.el (diary-view-entries-initially-flag): Rename view-diary-entries-initially. Keep old name as alias, update users. (calendar-mark-diary-entries-flag): Rename diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index aa5338e9e7..8e8942feee 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el @@ -1704,7 +1704,7 @@ after the inserted text. Returns t." (define-key map "S" 'calendar-sunrise-sunset) (define-key map "M" 'calendar-phases-of-moon) (define-key map " " 'scroll-other-window) - (define-key map (kbd "DEL") 'scroll-other-window-down) ; FIXME + (define-key map "\d" 'scroll-other-window-down) (define-key map "\C-c\C-l" 'calendar-redraw) (define-key map "." 'calendar-goto-today) (define-key map "o" 'calendar-other-month) -- 2.20.1