diff options
| author | Richard M. Stallman | 1994-05-08 06:10:52 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-08 06:10:52 +0000 |
| commit | e2bb905e9e22f25ef85002735e9d301438120242 (patch) | |
| tree | 2116a3e7d256d4d5376f796c0e72ffa06ac35472 | |
| parent | 10c3836a5d17d710361120270b7e23ed96a1416a (diff) | |
| download | emacs-e2bb905e9e22f25ef85002735e9d301438120242.tar.gz emacs-e2bb905e9e22f25ef85002735e9d301438120242.zip | |
(calendar-mouse-print-dates): Add missing level of list
for Islamic, Revolutionary and Mayan calendars.
Delete duplicate entry for ISO calendar.
| -rw-r--r-- | lisp/calendar/cal-menu.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/calendar/cal-menu.el b/lisp/calendar/cal-menu.el index e0492ecdf66..3313992d0b3 100644 --- a/lisp/calendar/cal-menu.el +++ b/lisp/calendar/cal-menu.el | |||
| @@ -240,7 +240,6 @@ | |||
| 240 | (append | 240 | (append |
| 241 | (list | 241 | (list |
| 242 | (concat (calendar-date-string date) " (Gregorian)") | 242 | (concat (calendar-date-string date) " (Gregorian)") |
| 243 | (list (calendar-iso-date-string date)) | ||
| 244 | (list (format "ISO date: %s" (calendar-iso-date-string date))) | 243 | (list (format "ISO date: %s" (calendar-iso-date-string date))) |
| 245 | (list (format "Julian date: %s" (calendar-julian-date-string date))) | 244 | (list (format "Julian date: %s" (calendar-julian-date-string date))) |
| 246 | (list (format "Astronomical (Julian) date (before noon): %s" | 245 | (list (format "Astronomical (Julian) date (before noon): %s" |
| @@ -249,12 +248,13 @@ | |||
| 249 | (calendar-hebrew-date-string date)))) | 248 | (calendar-hebrew-date-string date)))) |
| 250 | (let ((i (calendar-islamic-date-string date))) | 249 | (let ((i (calendar-islamic-date-string date))) |
| 251 | (if (not (string-equal i "")) | 250 | (if (not (string-equal i "")) |
| 252 | (list (format "Islamic date (before sunset): %s" i)))) | 251 | (list (list (format "Islamic date (before sunset): %s" i))))) |
| 253 | (let ((f (calendar-french-date-string date))) | 252 | (let ((f (calendar-french-date-string date))) |
| 254 | (if (not (string-equal f "")) | 253 | (if (not (string-equal f "")) |
| 255 | (list (format "French Revolutionary date: %s" f)))) | 254 | (list (list (format "French Revolutionary date: %s" f))))) |
| 256 | (list | 255 | (list |
| 257 | (format "Mayan date: %s" (calendar-mayan-date-string date)))))))) | 256 | (list |
| 257 | (format "Mayan date: %s" (calendar-mayan-date-string date))))))))) | ||
| 258 | 258 | ||
| 259 | (defun calendar-mouse-date-menu (event) | 259 | (defun calendar-mouse-date-menu (event) |
| 260 | "Pop up menu for selected date." | 260 | "Pop up menu for selected date." |