changeset 11628:ff046980f017

Fix delq example.
author Richard M. Stallman <rms@gnu.org>
date Sun, 30 Apr 1995 15:49:01 +0000
parents 2f0766bf8315
children bae8a831397f
files lispref/lists.texi
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lispref/lists.texi	Sun Apr 30 15:34:52 1995 +0000
+++ b/lispref/lists.texi	Sun Apr 30 15:49:01 1995 +0000
@@ -1118,11 +1118,11 @@
 @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