1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

* doc/lispref/objects.texi (Equality Predicates): Fix typo in example.

This commit is contained in:
Glenn Morris 2015-03-24 22:42:42 -07:00
parent ad89f85067
commit 921dd0de45
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2015-03-25 Glenn Morris <rgm@gnu.org>
* objects.texi (Equality Predicates): Fix typo in example.
2015-03-23 Eli Zaretskii <eliz@gnu.org>
* commands.texi (Event Input Misc): Fix incorrect usage of @code.

View File

@ -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