- Timestamp:
- 06/27/09 15:24:09 (12 years ago)
- Location:
- chicken/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
chicken/trunk/expand.scm
r15074 r15082 592 592 (##sys#expand-curried-define head (cddr x) se))) ] 593 593 [else 594 (##sys#check-syntax 'define x '(define (variable . lambda-list) . #(_ 1)) #f se) 594 (##sys#check-syntax 595 'define x '(define (variable . lambda-list) . #(_ 1)) #f se) 595 596 (loop rest 596 597 (cons (car head) vars) -
chicken/trunk/manual/Using the interpreter
r13713 r15082 242 242 More details are available in [[http://www.call-with-current-continuation.org/eggs/readline.html|the egg's documentation]]. 243 243 244 === Accessing documentation245 246 You can access the manual directly from {{csi}} using the [[http://www.call-with-current-continuation.org/eggs/man.html|man]] extension by Mario Domenech Goulart.247 248 To enable it install the egg and put this in your {{~/.csirc}} file:249 250 (use man)251 (man:load)252 253 Then, in {{csi}}, you can search for definitions using {{man:search}} as in:254 255 (man:search "case")256 257 Note that the search uses regular expressions.258 To view the documentation for one entry from the manual, use {{man:help}} as in:259 260 (man:help "case-lambda")261 262 Note: Currently the documentation provided by the {{man}} extension corresponds to Chicken's 2.429, one of the last releases whose documentation was in the texinfo format (the format the {{man}} extension parses).263 244 264 245 ---
Note: See TracChangeset
for help on using the changeset viewer.