aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2008-03-08 04:18:57 +0000
committerGlenn Morris <[email protected]>2008-03-08 04:18:57 +0000
commitb0b671db106f5cdc11a090f046dfd2987a346c73 (patch)
tree5aaa81dc9a07b5b0ff6892c3b43c3e43d6212148 /lisp
parent5fc5b6e16923cad6271ce22608caebb2d92850c0 (diff)
(persian-calendar-month-name-array, persian-calendar-epoch): Make constants.
(persian-prompt-for-date): Use zerop.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/calendar/cal-persia.el24
1 files changed, 12 insertions, 12 deletions
diff --git a/lisp/calendar/cal-persia.el b/lisp/calendar/cal-persia.el
index c4f80ce80e..0ad05e99c8 100644
--- a/lisp/calendar/cal-persia.el
+++ b/lisp/calendar/cal-persia.el
@@ -1,7 +1,7 @@
;;; cal-persia.el --- calendar functions for the Persian calendar
-;; Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
-;; Free Software Foundation, Inc.
+;; Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
+;; 2008 Free Software Foundation, Inc.
;; Author: Edward M. Reingold <[email protected]>
;; Maintainer: Glenn Morris <[email protected]>
@@ -32,28 +32,25 @@
;;; Code:
-(defvar date)
-
(require 'cal-julian)
-(defvar persian-calendar-month-name-array
+(defconst persian-calendar-month-name-array
["Farvardin" "Ordibehest" "Xordad" "Tir" "Mordad" "Sahrivar" "Mehr" "Aban"
"Azar" "Dey" "Bahman" "Esfand"])
-(defvar persian-calendar-epoch (calendar-absolute-from-julian '(3 19 622))
+(defconst persian-calendar-epoch (calendar-absolute-from-julian '(3 19 622))
"Absolute date of start of Persian calendar = March 19, 622 A.D. (Julian).")
(defun persian-calendar-leap-year-p (year)
"True if YEAR is a leap year on the Persian calendar."
(< (mod (* (mod (mod (if (<= 0 year)
- ; No year zero
- (+ year 2346)
+ (+ year 2346) ; no year zero
(+ year 2347))
2820)
768)
- 683)
- 2820)
- 683))
+ 683)
+ 2820)
+ 683))
(defun persian-calendar-last-day-of-month (month year)
"Return last day of MONTH, YEAR on the Persian calendar."
@@ -177,7 +174,7 @@ Echo Persian date unless NOECHO is t."
(let* ((today (calendar-current-date))
(year (calendar-read
"Persian calendar year (not 0): "
- (lambda (x) (/= x 0))
+ (lambda (x) (not (zerop x)))
(int-to-string
(extract-calendar-year
(calendar-persian-from-absolute
@@ -197,6 +194,9 @@ Echo Persian date unless NOECHO is t."
(lambda (x) (and (< 0 x) (<= x last))))))
(list (list month day year))))
+(defvar date)
+
+;; To be called from list-sexp-diary-entries, where DATE is bound.
(defun diary-persian-date ()
"Persian calendar equivalent of date diary entry."
(format "Persian date: %s" (calendar-persian-date-string date)))