Change the weekday abbrevaiations to two letters each. This reduces

their ambiguity and makes the output more consistent with other
calendars (e.g. cal in Emacs).

Reviewed by:
Submitted by:	wosch@cs.tu-berlin.de (Wolfram Schneider)
Obtained from:
This commit is contained in:
Joerg Wunsch 1995-07-22 22:14:49 +00:00
parent abe8bea470
commit f816912386
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9640

View file

@ -96,8 +96,8 @@ char *month_names[12] = {
"July", "August", "September", "October", "November", "December",
};
char *day_headings = " S M Tu W Th F S";
char *j_day_headings = " S M Tu W Th F S";
char *day_headings = "Su Mo Tu We Th Fr Sa";
char *j_day_headings = " Su Mo Tu We Th Fr Sa";
/* leap year -- account for gregorian reformation in 1752 */
#define leap_year(yr) \