From: Glenn Morris Date: Wed, 25 Mar 2015 05:42:42 +0000 (-0700) Subject: * doc/lispref/objects.texi (Equality Predicates): Fix typo in example. X-Git-Tag: emacs-24.5-rc1~4 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=921dd0d;p=emacs.git * doc/lispref/objects.texi (Equality Predicates): Fix typo in example. --- 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