diff options
| author | Glenn Morris | 2012-02-16 00:21:30 -0800 |
|---|---|---|
| committer | Glenn Morris | 2012-02-16 00:21:30 -0800 |
| commit | d68cd0870562e11ac3d16e3176af22d4785ecea6 (patch) | |
| tree | be2f1c89e57389f14aeaa68fd70ef2bac097b665 | |
| parent | 5f9756eca75a4dddb2299b0014345405421bbe78 (diff) | |
| download | emacs-d68cd0870562e11ac3d16e3176af22d4785ecea6.tar.gz emacs-d68cd0870562e11ac3d16e3176af22d4785ecea6.zip | |
calendar-hebrew-list-yahrzeits tweak
* lisp/calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits):
Interactively in calendar buffer, give an error if not on a date.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/calendar/cal-hebrew.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index bdbe99d5452..2e16e59c2d5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-02-16 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * calendar/cal-hebrew.el (calendar-hebrew-list-yahrzeits): | ||
| 4 | Interactively in calendar buffer, give an error if not on a date. | ||
| 5 | |||
| 1 | 2012-02-15 Glenn Morris <rgm@gnu.org> | 6 | 2012-02-15 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * shell.el (shell-delimiter-argument-list): | 8 | * shell.el (shell-delimiter-argument-list): |
diff --git a/lisp/calendar/cal-hebrew.el b/lisp/calendar/cal-hebrew.el index cb738675cc4..9db77d7bd87 100644 --- a/lisp/calendar/cal-hebrew.el +++ b/lisp/calendar/cal-hebrew.el | |||
| @@ -731,7 +731,7 @@ from the cursor position." | |||
| 731 | (interactive | 731 | (interactive |
| 732 | (let* ((death-date | 732 | (let* ((death-date |
| 733 | (if (equal (current-buffer) (get-buffer calendar-buffer)) | 733 | (if (equal (current-buffer) (get-buffer calendar-buffer)) |
| 734 | (calendar-cursor-to-date) | 734 | (calendar-cursor-to-date t) |
| 735 | (let* ((today (calendar-current-date)) | 735 | (let* ((today (calendar-current-date)) |
| 736 | (year (calendar-read | 736 | (year (calendar-read |
| 737 | "Year of death (>0): " | 737 | "Year of death (>0): " |