From 921dd0de45b955577f39de5f7aab923dab1ff063 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 24 Mar 2015 22:42:42 -0700 Subject: [PATCH] * doc/lispref/objects.texi (Equality Predicates): Fix typo in example. --- doc/lispref/ChangeLog | 4 ++++ doc/lispref/objects.texi | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index a0a2b2b4d05..b11d0a00311 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog @@ -1,3 +1,7 @@ +2015-03-25 Glenn Morris + + * objects.texi (Equality Predicates): Fix typo in example. + 2015-03-23 Eli Zaretskii * commands.texi (Event Input Misc): Fix incorrect usage of @code. diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi index 739477bf372..b9d2bbed418 100644 --- a/doc/lispref/objects.texi +++ b/doc/lispref/objects.texi @@ -2111,12 +2111,12 @@ that for two strings to be equal, they have the same text properties. @example @group -(equal "asdf" (propertize "asdf" '(asdf t))) +(equal "asdf" (propertize "asdf" 'asdf t)) @result{} t @end group @group (equal-including-properties "asdf" - (propertize "asdf" '(asdf t))) + (propertize "asdf" 'asdf t)) @result{} nil @end group @end example -- 2.39.5