-- Made textmode calendar allowed to be as small as 71 columns.

This commit is contained in:
dfs
1998-07-18 03:16:37 +00:00
parent a2ffdfcc4f
commit 5c478cd6c9
2 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
/* */
/***************************************************************/
/* $Id: custom.h,v 1.15 1998-03-01 21:04:27 dfs Exp $ */
/* $Id: custom.h,v 1.16 1998-07-18 03:16:37 dfs Exp $ */
/*---------------------------------------------------------------------*/
/* LAT_DEG, LAT_MIN and LAT_SEC: Latitude of your location */

View File

@@ -12,7 +12,7 @@
/***************************************************************/
#include "config.h"
static char const RCSID[] = "$Id: init.c,v 1.8 1998-03-02 19:38:40 dfs Exp $";
static char const RCSID[] = "$Id: init.c,v 1.9 1998-07-18 03:16:37 dfs Exp $";
#define L_IN_INIT 1
#include <stdio.h>
@@ -323,7 +323,7 @@ char *argv[];
case 'W':
if (*arg != ',') {
PARSENUM(CalWidth, arg);
if (CalWidth < 80) CalWidth = 80;
if (CalWidth < 71) CalWidth = 71;
}
if (*arg == ',') {
arg++;