Deleted Added
full compact
2c2
< * Copyright (c) 1998-2000 Free Software Foundation, Inc. *
---
> * Copyright (c) 1998-2000,2008 Free Software Foundation, Inc. *
31a32
> * and: Thomas E. Dickey 1996-on *
34c35
< /* $Id: capdefaults.c,v 1.12 2000/01/02 02:34:56 tom Exp $ */
---
> /* $Id: capdefaults.c,v 1.13 2008/08/04 12:33:42 tom Exp $ */
47c48
< int capval;
---
> short capval;
49c50,51
< #define EXTRACT_DELAY(str) (sp = strchr(str, '*'), sp ? atoi(sp+1) : 0)
---
> #define EXTRACT_DELAY(str) \
> (short) (sp = strchr(str, '*'), sp ? atoi(sp+1) : 0)
76,77c78,79
< linefeed_is_newline = VALID_STRING(newline)
< && (strcmp("\n", newline) == 0);
---
> linefeed_is_newline = (char) (VALID_STRING(newline)
> && (strcmp("\n", newline) == 0));