Mercurial > emacs
comparison man/cl.texi @ 89909:68c22ea6027c
Sync to HEAD
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 16 Apr 2004 12:51:06 +0000 |
parents | 375f2633d815 |
children | 4c90ffeb71c5 |
comparison
equal
deleted
inserted
replaced
89908:ee1402f7b568 | 89909:68c22ea6027c |
---|---|
48 @vskip 0pt plus 1filll | 48 @vskip 0pt plus 1filll |
49 @insertcopying | 49 @insertcopying |
50 @end titlepage | 50 @end titlepage |
51 | 51 |
52 @node Top, Overview, (dir), (dir) | 52 @node Top, Overview, (dir), (dir) |
53 @chapter Common Lisp Extensions | 53 @chapter Overview |
54 | 54 |
55 @noindent | 55 @noindent |
56 This document describes a set of Emacs Lisp facilities borrowed from | 56 This document describes a set of Emacs Lisp facilities borrowed from |
57 Common Lisp. All the facilities are described here in detail. While | 57 Common Lisp. All the facilities are described here in detail. While |
58 this document does not assume any prior knowledge of Common Lisp, it | 58 this document does not assume any prior knowledge of Common Lisp, it |
3125 (declaim (inline foo bar)) | 3125 (declaim (inline foo bar)) |
3126 (eval-when (compile load eval) (proclaim '(inline foo bar))) | 3126 (eval-when (compile load eval) (proclaim '(inline foo bar))) |
3127 (defsubst foo (...) ...) ; instead of defun | 3127 (defsubst foo (...) ...) ; instead of defun |
3128 @end example | 3128 @end example |
3129 | 3129 |
3130 @strong{Note:} This declaration remains in effect after the | 3130 @strong{Please note:} this declaration remains in effect after the |
3131 containing source file is done. It is correct to use it to | 3131 containing source file is done. It is correct to use it to |
3132 request that a function you have defined should be inlined, | 3132 request that a function you have defined should be inlined, |
3133 but it is impolite to use it to request inlining of an external | 3133 but it is impolite to use it to request inlining of an external |
3134 function. | 3134 function. |
3135 | 3135 |
5359 @printindex vr | 5359 @printindex vr |
5360 | 5360 |
5361 @setchapternewpage odd | 5361 @setchapternewpage odd |
5362 @contents | 5362 @contents |
5363 @bye | 5363 @bye |
5364 | |
5365 @ignore | |
5366 arch-tag: b61e7200-3bfa-4a70-a9d3-095e152696f8 | |
5367 @end ignore |