]> code.delx.au - gnu-emacs/commitdiff
Add doc strings CORRECTLY!
authorEdward M. Reingold <reingold@emr.cs.iit.edu>
Wed, 21 Oct 1998 20:03:07 +0000 (20:03 +0000)
committerEdward M. Reingold <reingold@emr.cs.iit.edu>
Wed, 21 Oct 1998 20:03:07 +0000 (20:03 +0000)
lisp/calendar/calendar.el

index 342feb971b230949da946a751575a0f95e299ef2..14827bc63197cbcc70ab3db319b345ade233ec13 100644 (file)
@@ -2335,13 +2335,13 @@ rather than a date."
          (t (substring string 0 width)))))
 
 (defvar calendar-day-name-array
-  "Array of capitalized strings giving, in order, the day names."
-  ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"])
+  ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"]
+  "Array of capitalized strings giving, in order, the day names.")
 
 (defvar calendar-month-name-array
-  "Array of capitalized strings giving, in order, the month names."
   ["January" "February" "March"     "April"   "May"      "June"
-   "July"    "August"   "September" "October" "November" "December"])
+   "July"    "August"   "September" "October" "November" "December"]
+  "Array of capitalized strings giving, in order, the month names.")
 
 (defun calendar-make-alist (sequence &optional start-index filter)
   "Make an assoc list corresponding to SEQUENCE.