Mercurial > hg > xemacs-beta
comparison 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 |
comparison
equal
deleted
inserted
replaced
43:23cafc5d2038 | 44:8d2a9b52c682 |
---|---|
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 |