1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-06 12:10:28 +02:00

Minor fixes in NEWS

* NEWS: Minor fixes to the descriptions.
This commit is contained in:
Mark H Weaver 2012-11-29 17:25:21 -05:00
parent 13fac28218
commit a94e7d85dd

14
NEWS
View file

@ -61,10 +61,10 @@ ways.
First, the `LD_LIBRARY_PATH' modification would be visible to First, the `LD_LIBRARY_PATH' modification would be visible to
sub-processes, and would also affect future calls to `dlopen', which sub-processes, and would also affect future calls to `dlopen', which
could lead to subtle bugs in the application or sub-processes. Second, could lead to subtle bugs in the application or sub-processes. Second,
when the installation prefix is /usr/local, the `LD_LIBRARY_PATH' when the installation prefix is /usr, the `LD_LIBRARY_PATH' modification
modification would typically end up inserting /usr/lib before would typically end up inserting /usr/lib before /usr/local/lib in the
/usr/local/lib in the search path, which is often the opposite of search path, which is often the opposite of system-wide settings such as
system-wide settings such as `ld.so.conf'. `ld.so.conf'.
Both issues have now been fixed. Both issues have now been fixed.
@ -77,10 +77,10 @@ Programs should instead use `make-vtable' and `<standard-vtable>'.
These recently introduced warnings have been documented and are now These recently introduced warnings have been documented and are now
enabled by default when auto-compiling. enabled by default when auto-compiling.
** Optimize calls to `equal?' with a constant argument ** Optimize calls to `equal?' or `eqv?' with a constant argument
The compiler simplifies calls to `equal?' with a constant argument to The compiler simplifies calls to `equal?' or `eqv?' with a constant
use `eq?' or `eqv?' instead, when applicable. argument to use `eq?' instead, when applicable.
* Manual updates * Manual updates