(calendar-goto-french-date): Fix prompt to match the actual code.
authorPavel Janík <Pavel@Janik.cz>
Fri, 15 Mar 2002 20:45:10 +0000 (20:45 +0000)
committerPavel Janík <Pavel@Janik.cz>
Fri, 15 Mar 2002 20:45:10 +0000 (20:45 +0000)
lisp/ChangeLog
lisp/calendar/cal-french.el

index dcdb805..66ae6fe 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-15  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * calendar/cal-french.el (calendar-goto-french-date): Fix prompt
+       to match the actual code.
+
 2002-03-15  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * textmodes/po.el (po-find-file-coding-system-guts): Use
index ef220be..c21375e 100644 (file)
@@ -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)))))