aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/lists.texi
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispref/lists.texi')
-rw-r--r--doc/lispref/lists.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 1409e51c0d4..06472539744 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -1249,7 +1249,7 @@ this is not guaranteed to happen):
1249 1249
1250@group 1250@group
1251(symbol-function 'add-foo) 1251(symbol-function 'add-foo)
1252 @result{} (lambda (x) (nconc '(foo) x)) 1252 @result{} #f(lambda (x) [t] (nconc '(foo) x))
1253@end group 1253@end group
1254 1254
1255@group 1255@group
@@ -1267,7 +1267,7 @@ this is not guaranteed to happen):
1267 1267
1268@group 1268@group
1269(symbol-function 'add-foo) 1269(symbol-function 'add-foo)
1270 @result{} (lambda (x) (nconc '(foo 1 2 3 4) x)) 1270 @result{} #f(lambda (x) [t] (nconc '(foo 1 2 3 4) x))
1271@end group 1271@end group
1272@end smallexample 1272@end smallexample
1273@end defun 1273@end defun