diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-04-30 15:49:01 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-04-30 15:49:01 +0000 |
commit | 34e1af81c804e77bc65251db7dcefbfba099e6fa (patch) | |
tree | 969e6e51365195c2f6143a87e119af2f7dfb44b7 /lispref/lists.texi | |
parent | 64736f55e159ae981a7331e9b3fbd178d84c2655 (diff) | |
download | emacs-34e1af81c804e77bc65251db7dcefbfba099e6fa.tar.gz |
Fix delq example.
Diffstat (limited to 'lispref/lists.texi')
-rw-r--r-- | lispref/lists.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/lists.texi b/lispref/lists.texi index 3f9a5c8d7e4..dcb3b8af9d5 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 |