;;; Code:
-(defvar date)
(defvar displayed-month)
(defvar displayed-year)
-(defvar number)
(defvar original-date)
(require 'cal-julian)
(calendar-absolute-from-islamic date)))
(or noecho (calendar-print-islamic-date)))
-(defun diary-islamic-date ()
- "Islamic calendar equivalent of date diary entry."
- (let ((i (calendar-islamic-date-string date)))
- (if (string-equal i "")
- "Date is pre-Islamic"
- (format "Islamic date (until sunset): %s" i))))
-
(defun holiday-islamic (month day string)
"Holiday on MONTH, DAY (Islamic) called STRING.
If MONTH, DAY (Islamic) is visible, the value returned is corresponding
(declare-function add-to-diary-list "diary-lib"
(date string specifier &optional marker globcolor literal))
+(defvar number) ; from diary-list-entries
+
(defun list-islamic-diary-entries ()
"Add any Islamic date entries from the diary file to `diary-entries-list'.
Islamic date diary entries must be prefaced by `islamic-diary-entry-symbol'
(calendar-cursor-to-date t)))))
arg)))
+(defvar date)
+
+;; To be called from diary-sexp-entry, where DATE, ENTRY are bound.
+(defun diary-islamic-date ()
+ "Islamic calendar equivalent of date diary entry."
+ (let ((i (calendar-islamic-date-string date)))
+ (if (string-equal i "")
+ "Date is pre-Islamic"
+ (format "Islamic date (until sunset): %s" i))))
+
(provide 'cal-islam)
;; Local Variables: