diff man/lispref/intro.texi @ 44:8d2a9b52c682 r19-15prefinal

Import from CVS: tag r19-15prefinal
author cvs
date Mon, 13 Aug 2007 08:55:10 +0200
parents 376386a54a3c
children 05472e90ae02
line wrap: on
line diff
--- a/man/lispref/intro.texi	Mon Aug 13 08:54:52 2007 +0200
+++ b/man/lispref/intro.texi	Mon Aug 13 08:55:10 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