aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2002-03-15 20:45:10 +0000
committerPavel Janík2002-03-15 20:45:10 +0000
commit1ba92e5da97e025de1beefc769af237dedab745d (patch)
tree709e1ac95af3227b40c9f4c360ee36212d793bbc
parent2ca514455eb9fce8ade9c23d5bcc5bbc69bdb9fd (diff)
downloademacs-1ba92e5da97e025de1beefc769af237dedab745d.tar.gz
emacs-1ba92e5da97e025de1beefc769af237dedab745d.zip
(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 dcdb805651f..66ae6feb7c8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-03-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * calendar/cal-french.el (calendar-goto-french-date): Fix prompt
4 to match the actual code.
5
12002-03-15 Eli Zaretskii <eliz@is.elta.co.il> 62002-03-15 Eli Zaretskii <eliz@is.elta.co.il>
2 7
3 * textmodes/po.el (po-find-file-coding-system-guts): Use 8 * textmodes/po.el (po-find-file-coding-system-guts): Use
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."
237 (day (if (> month 12) 237 (day (if (> month 12)
238 (- month 12) 238 (- month 12)
239 (calendar-read 239 (calendar-read
240 "Jour (1-10): " 240 "Jour (1-30): "
241 '(lambda (x) (and (<= 1 x) (<= x 30)))))) 241 '(lambda (x) (and (<= 1 x) (<= x 30))))))
242 (month (if (> month 12) 13 month))) 242 (month (if (> month 12) 13 month)))
243 (list (list month day year))))) 243 (list (list month day year)))))