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