summaryrefslogtreecommitdiff
path: root/lisp/calendar/cal-hebrew.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-03-13 03:50:40 +0000
committerGlenn Morris <rgm@gnu.org>2008-03-13 03:50:40 +0000
commit66471e039bf8d606938a8db4cb1d715145678a7b (patch)
treefd12178b3e5347cde39193e865f7a6aa04304f0b /lisp/calendar/cal-hebrew.el
parent464e82586ed476a92cec0dc3e5af8420073a033b (diff)
downloademacs-66471e039bf8d606938a8db4cb1d715145678a7b.tar.gz
(list-yahrzeit-dates): Use cal-hebrew-yahrzeit-buffer.
Diffstat (limited to 'lisp/calendar/cal-hebrew.el')
-rw-r--r--lisp/calendar/cal-hebrew.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/calendar/cal-hebrew.el b/lisp/calendar/cal-hebrew.el
index 284d657e9b1..06803fcea80 100644
--- a/lisp/calendar/cal-hebrew.el
+++ b/lisp/calendar/cal-hebrew.el
@@ -878,13 +878,12 @@ from the cursor position."
(lambda (x) (>= x start-year)))))
(list death-date start-year end-year)))
(message "Computing Yahrzeits...")
- (let* ((yahrzeit-buffer "*Yahrzeits*")
- (h-date (calendar-hebrew-from-absolute
+ (let* ((h-date (calendar-hebrew-from-absolute
(calendar-absolute-from-gregorian death-date)))
(h-month (extract-calendar-month h-date))
(h-day (extract-calendar-day h-date))
(h-year (extract-calendar-year h-date)))
- (set-buffer (get-buffer-create yahrzeit-buffer))
+ (set-buffer (get-buffer-create cal-hebrew-yahrzeit-buffer))
(setq buffer-read-only nil)
(calendar-set-mode-line
(format "Yahrzeit dates for %s = %s"
@@ -908,7 +907,7 @@ from the cursor position."
(goto-char (point-min))
(set-buffer-modified-p nil)
(setq buffer-read-only t)
- (display-buffer yahrzeit-buffer)
+ (display-buffer cal-hebrew-yahrzeit-buffer)
(message "Computing Yahrzeits...done")))
(defvar date)