NEWS: Reindent and copyedit

Make the indentation of the "Deprecated and removed features" section
for 2.28 consistent with the indentation of the "Major new features"
section above.  Also, consistently refer to "stdio functions" instead
of "stdio.h functions".
This commit is contained in:
Zack Weinberg 2018-04-23 11:25:19 -04:00
parent ea76691a75
commit 18ea73adaa

2
NEWS
View File

@ -31,7 +31,7 @@ Deprecated and removed features, and other changes affecting compatibility:
installed. Software that was using either header should be updated to
use standard <stdio.h> interfaces instead.
* The stdio.h functions 'getc' and 'putc' are no longer defined as macros.
* The stdio functions 'getc' and 'putc' are no longer defined as macros.
This was never required by the C standard, and the macros just expanded
to call alternative names for the same functions. If you hoped getc and
putc would provide performance improvements over fgetc and fputc, instead