aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/objects.texi4
2 files changed, 6 insertions, 2 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 9e1b7b074e2..c24bb646fa6 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
12015-03-29 Glenn Morris <rgm@gnu.org>
2
3 * objects.texi (Equality Predicates): Fix typo in example.
4
12015-03-25 Stefan Monnier <monnier@iro.umontreal.ca> 52015-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * positions.texi (Excursions, Narrowing): `save-excursion' does not 7 * positions.texi (Excursions, Narrowing): `save-excursion' does not
diff --git a/doc/lispref/objects.texi b/doc/lispref/objects.texi
index b28b3b00898..f4beca822cd 100644
--- a/doc/lispref/objects.texi
+++ b/doc/lispref/objects.texi
@@ -2135,12 +2135,12 @@ that for two strings to be equal, they have the same text properties.
2135 2135
2136@example 2136@example
2137@group 2137@group
2138(equal "asdf" (propertize "asdf" '(asdf t))) 2138(equal "asdf" (propertize "asdf" 'asdf t))
2139 @result{} t 2139 @result{} t
2140@end group 2140@end group
2141@group 2141@group
2142(equal-including-properties "asdf" 2142(equal-including-properties "asdf"
2143 (propertize "asdf" '(asdf t))) 2143 (propertize "asdf" 'asdf t))
2144 @result{} nil 2144 @result{} nil
2145@end group 2145@end group
2146@end example 2146@end example