summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-03-15 20:47:58 +0000
committerPavel Janík <Pavel@Janik.cz>2002-03-15 20:47:58 +0000
commit57155d9fd6fe02fe2730ca4860ed40b99085b761 (patch)
tree269b0d7068b296263743d861f7ba274a636073fa
parente08f233f5658ae79b71801b95bf11aad00faea27 (diff)
downloademacs-57155d9fd6fe02fe2730ca4860ed40b99085b761.tar.gz
(calendar-goto-french-date): Fix prompt to match the actual code.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/calendar/cal-french.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0ba68fd1d80..c09a90807a1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
+
+ * calendar/cal-french.el (calendar-goto-french-date): Fix prompt
+ to match the actual code.
+
2002-03-11 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
* image.el (image-type-from-file-header): Make temporary buffer
diff --git a/lisp/calendar/cal-french.el b/lisp/calendar/cal-french.el
index ef220be1497..c21375e28cd 100644
--- a/lisp/calendar/cal-french.el
+++ b/lisp/calendar/cal-french.el
@@ -237,7 +237,7 @@ Echo French Revolutionary date unless NOECHO is t."
(day (if (> month 12)
(- month 12)
(calendar-read
- "Jour (1-10): "
+ "Jour (1-30): "
'(lambda (x) (and (<= 1 x) (<= x 30))))))
(month (if (> month 12) 13 month)))
(list (list month day year)))))