diff options
author | Joerg Wunsch <joerg@FreeBSD.org> | 1995-07-22 22:14:49 +0000 |
---|---|---|
committer | Joerg Wunsch <joerg@FreeBSD.org> | 1995-07-22 22:14:49 +0000 |
commit | f816912386dfb6cf90332fc6e237120960f5b1ae (patch) | |
tree | b0272aa2a911fa60cf7267b848aaecf2b371de6f /usr.bin/cal/cal.c | |
parent | abe8bea4709d58aea76a71839948d0c955ec2624 (diff) |
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:
Notes
Notes:
svn path=/head/; revision=9640
Diffstat (limited to 'usr.bin/cal/cal.c')
-rw-r--r-- | usr.bin/cal/cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cal/cal.c b/usr.bin/cal/cal.c index 88d253863865..9bf218de32b7 100644 --- a/usr.bin/cal/cal.c +++ b/usr.bin/cal/cal.c @@ -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) \ |