]> git.eshelyaron.com Git - emacs.git/commitdiff
(Equality Predicates): Null strings are uniquified.
authorRichard M. Stallman <rms@gnu.org>
Fri, 26 Oct 2007 09:49:54 +0000 (09:49 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 26 Oct 2007 09:49:54 +0000 (09:49 +0000)
doc/lispref/ChangeLog
doc/lispref/objects.texi

index f313e83b14a09e5044acfbe2184f8bfda97256f3..e74d8889e01ff57a0ec50e13fb542cdc7d3141b3 100644 (file)
@@ -1,3 +1,9 @@
+2007-10-26  Richard Stallman  <rms@gnu.org>
+
+       * objects.texi (Equality Predicates): Null strings are uniquified.
+
+       * minibuf.texi: Minor clarifications in previous change.
+
 2007-10-25  Glenn Morris  <rgm@gnu.org>
 
        * customize.texi (Variable Definitions): Add :risky and :safe keywords.
index b4114a97d5d8193f8d001df0f336e99f0da335e0..0da054888588cf6bc102838df466ac874f8d3b2b 100644 (file)
@@ -1871,7 +1871,7 @@ This function returns a symbol naming the primitive type of
 @cindex equality
 
   Here we describe two functions that test for equality between any two
-objects.  Other functions test equality between objects of specific
+objects.  Other functions test equality of contents between objects of specific
 types, e.g., strings.  For these predicates, see the appropriate chapter
 describing the data type.
 
@@ -1904,6 +1904,13 @@ by the same change in the contents of the other.
      @result{} nil
 @end group
 
+@group
+(eq "" "")
+     @result{} t
+;; @r{This exception occurs because Emacs Lisp}
+;; @r{makes just one multibyte empty string, to save space.}
+@end group
+
 @group
 (eq '(1 (2 (3))) '(1 (2 (3))))
      @result{} nil