comparison 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
comparison
equal deleted inserted replaced
115:f109f7dabbe2 116:9f59509498e1
610 evaluate. We show the result of the expansion with 610 evaluate. We show the result of the expansion with
611 @samp{@expansion{}}. We may or may not show the actual result of the 611 @samp{@expansion{}}. We may or may not show the actual result of the
612 evaluation of the expanded form. 612 evaluation of the expanded form.
613 613
614 @example 614 @example
615 (third '(a b c)) 615 (news-cadr '(a b c))
616 @expansion{} (car (cdr (cdr '(a b c)))) 616 @expansion{} (car (cdr '(a b c)))
617 @result{} c 617 @result{} b
618 @end example 618 @end example
619 619
620 Sometimes to help describe one form we show another form that 620 Sometimes to help describe one form we show another form that
621 produces identical results. The exact equivalence of two forms is 621 produces identical results. The exact equivalence of two forms is
622 indicated with @samp{@equiv{}}. 622 indicated with @samp{@equiv{}}.
623 623
624 @example 624 @example
625 (make-sparse-keymap) @equiv{} (list 'keymap) 625 (cons 'a nil) @equiv{} (list 'a)
626 @end example 626 @end example
627 627
628 @node Printing Notation 628 @node Printing Notation
629 @subsection Printing Notation 629 @subsection Printing Notation
630 @cindex printing notation 630 @cindex printing notation