diff man/lispref/intro.texi @ 116:9f59509498e1 r20-1b10

Import from CVS: tag r20-1b10
author cvs
date Mon, 13 Aug 2007 09:23:06 +0200
parents 131b0175ea99
children cca96a509cfe
line wrap: on
line diff
--- a/man/lispref/intro.texi	Mon Aug 13 09:21:56 2007 +0200
+++ b/man/lispref/intro.texi	Mon Aug 13 09:23:06 2007 +0200
@@ -612,9 +612,9 @@
 evaluation of the expanded form.
 
 @example
-(third '(a b c))
-     @expansion{} (car (cdr (cdr '(a b c))))
-     @result{} c
+(news-cadr '(a b c))
+     @expansion{} (car (cdr '(a b c)))
+     @result{} b
 @end example
 
   Sometimes to help describe one form we show another form that
@@ -622,7 +622,7 @@
 indicated with @samp{@equiv{}}.
 
 @example
-(make-sparse-keymap) @equiv{} (list 'keymap)
+(cons 'a nil) @equiv{} (list 'a)
 @end example
 
 @node Printing Notation