aboutsummaryrefslogtreecommitdiffstats
path: root/lispref
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1995-04-30 15:49:01 +0000
committerRichard M. Stallman <[email protected]>1995-04-30 15:49:01 +0000
commit34e1af81c804e77bc65251db7dcefbfba099e6fa (patch)
tree969e6e51365195c2f6143a87e119af2f7dfb44b7 /lispref
parent64736f55e159ae981a7331e9b3fbd178d84c2655 (diff)
Fix delq example.
Diffstat (limited to 'lispref')
-rw-r--r--lispref/lists.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi
index 3f9a5c8d7e..dcb3b8af9d 100644
--- a/lispref/lists.texi
+++ b/lispref/lists.texi
@@ -1118,11 +1118,11 @@ sample-list
@end group
@group
(delq 'c sample-list)
- @result{} (a c (4))
+ @result{} (a b (4))
@end group
@group
sample-list
- @result{} (a c (4))
+ @result{} (a b (4))
@end group
@end example