From: Paul Eggert Date: Wed, 18 Jul 2018 18:27:06 +0000 (-0700) Subject: * etc/NEWS: Fix eql typo in previous change. X-Git-Tag: emacs-27.0.90~4664^2~61 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5934122c1f3371a07b9f041aec693d762e9d8767;p=emacs.git * etc/NEWS: Fix eql typo in previous change. --- diff --git a/etc/NEWS b/etc/NEWS index 861520bd14b..f30ab698233 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -829,8 +829,8 @@ remote systems, which support this check. ** 'eql', 'make-hash-table', etc. now treat NaNs consistently. Formerly, some of these functions ignored signs and significands of NaNs. Now, all these functions treat NaN signs and significands as -significant. For example, (eql 0.0e+NaN -0.0e+NaN) now returns t -because the two NaNs have different signs; formerly it returned nil. +significant. For example, (eql 0.0e+NaN -0.0e+NaN) now returns nil +because the two NaNs have different signs; formerly it returned t. +++ ** The function 'make-string' accepts an additional optional argument.