diff options
| author | Glenn Morris | 2004-10-04 23:46:42 +0000 |
|---|---|---|
| committer | Glenn Morris | 2004-10-04 23:46:42 +0000 |
| commit | fb60b3e130f3e8dffa879fdd34f867caf4455657 (patch) | |
| tree | 04c815eda8c63e9130751da859b23c7e617c15d9 | |
| parent | 6b8927e31c5fc0716133e5e6f164427bd0ec3a22 (diff) | |
| download | emacs-fb60b3e130f3e8dffa879fdd34f867caf4455657.tar.gz emacs-fb60b3e130f3e8dffa879fdd34f867caf4455657.zip | |
From Emilio C. Lopes <eclig@gmx.net>:
(calendar-goto-iso-week): Add autoload.
(calendar-mode-map): Add binding for `calendar-goto-iso-week'.
| -rw-r--r-- | lisp/calendar/calendar.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lisp/calendar/calendar.el b/lisp/calendar/calendar.el index 9d38cde21ce..aa0b3005fad 100644 --- a/lisp/calendar/calendar.el +++ b/lisp/calendar/calendar.el | |||
| @@ -1769,6 +1769,10 @@ Driven by the variable `calendar-date-display-form'.") | |||
| 1769 | "Move cursor to ISO date." | 1769 | "Move cursor to ISO date." |
| 1770 | t) | 1770 | t) |
| 1771 | 1771 | ||
| 1772 | (autoload 'calendar-goto-iso-week "cal-iso" | ||
| 1773 | "Move cursor to start of ISO week." | ||
| 1774 | t) | ||
| 1775 | |||
| 1772 | (autoload 'calendar-print-iso-date "cal-iso" | 1776 | (autoload 'calendar-print-iso-date "cal-iso" |
| 1773 | "Show the ISO date equivalents of date." | 1777 | "Show the ISO date equivalents of date." |
| 1774 | t) | 1778 | t) |
| @@ -2204,6 +2208,7 @@ the inserted text. Value is always t." | |||
| 2204 | (define-key calendar-mode-map "ge" 'calendar-goto-ethiopic-date) | 2208 | (define-key calendar-mode-map "ge" 'calendar-goto-ethiopic-date) |
| 2205 | (define-key calendar-mode-map "gp" 'calendar-goto-persian-date) | 2209 | (define-key calendar-mode-map "gp" 'calendar-goto-persian-date) |
| 2206 | (define-key calendar-mode-map "gc" 'calendar-goto-iso-date) | 2210 | (define-key calendar-mode-map "gc" 'calendar-goto-iso-date) |
| 2211 | (define-key calendar-mode-map "gw" 'calendar-goto-iso-week) | ||
| 2207 | (define-key calendar-mode-map "gf" 'calendar-goto-french-date) | 2212 | (define-key calendar-mode-map "gf" 'calendar-goto-french-date) |
| 2208 | (define-key calendar-mode-map "gml" 'calendar-goto-mayan-long-count-date) | 2213 | (define-key calendar-mode-map "gml" 'calendar-goto-mayan-long-count-date) |
| 2209 | (define-key calendar-mode-map "gmpc" 'calendar-previous-calendar-round-date) | 2214 | (define-key calendar-mode-map "gmpc" 'calendar-previous-calendar-round-date) |