# HG changeset patch # User Glenn Morris # Date 1206416521 0 # Node ID 3c66b698cc4368d47d6f7670168253dc81a03baa # Parent 5a7437fafea3c5533a465b2b8c1254eaf166805d (calendar-persian-read-date): New name for persian-prompt-for-date. Update callers, make old name an obsolete alias. Doc fix. Move definition before use. diff -r 5a7437fafea3 -r 3c66b698cc43 lisp/calendar/cal-persia.el --- a/lisp/calendar/cal-persia.el Tue Mar 25 03:41:39 2008 +0000 +++ b/lisp/calendar/cal-persia.el Tue Mar 25 03:42:01 2008 +0000 @@ -159,17 +159,9 @@ (message "Persian date: %s" (calendar-persian-date-string (calendar-cursor-to-date t)))) -;;;###cal-autoload -(defun calendar-goto-persian-date (date &optional noecho) - "Move cursor to Persian date DATE. -Echo Persian date unless NOECHO is non-nil." - (interactive (persian-prompt-for-date)) - (calendar-goto-date (calendar-gregorian-from-absolute - (calendar-absolute-from-persian date))) - (or noecho (calendar-print-persian-date))) - -(defun persian-prompt-for-date () - "Ask for a Persian date." +(defun calendar-persian-read-date () + "Interactively read the arguments for a Persian date command. +Reads a year, month, and day." (let* ((year (calendar-read "Persian calendar year (not 0): " (lambda (x) (not (zerop x))) @@ -193,6 +185,18 @@ (lambda (x) (and (< 0 x) (<= x last)))))) (list (list month day year)))) +(define-obsolete-function-alias + 'persian-prompt-for-date 'calendar-persian-read-date "23.1") + +;;;###cal-autoload +(defun calendar-goto-persian-date (date &optional noecho) + "Move cursor to Persian date DATE. +Echo Persian date unless NOECHO is non-nil." + (interactive (calendar-persian-read-date)) + (calendar-goto-date (calendar-gregorian-from-absolute + (calendar-absolute-from-persian date))) + (or noecho (calendar-print-persian-date))) + (defvar date) ;; To be called from list-sexp-diary-entries, where DATE is bound.