~ubuntu-branches/ubuntu/intrepid/ecl/intrepid

« back to all changes in this revision

Viewing changes to src/doc/help.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Albin Tonnerre
  • Date: 2008-06-20 18:00:19 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080620180019-7fbz1ln5444vtkkr
Tags: 0.9j-20080306-2ubuntu1
* Enabled unicode support. (Closes: LP #123530)
* Modify Maintainer value to match the DebianMaintainerField specification.

Show diffs side-by-side

added added

removed removed

Lines of Context:
571
571
way you can specify FASL code (i.e. compiled lisp code) and additional
572
572
libraries or custom C code.
573
573
 
574
 
Hoewever, if the argument is a symbol, it is interpreted as the name of a lisp
 
574
However, if the argument is a symbol, it is interpreted as the name of a lisp
575
575
library of FASL code. You should use symbols to call in optional parts of the
576
576
interpreter, such as the compiler 'CMP or the 'CLX library (not yet available)
577
577
 
2714
2714
Removes the specified property from the property list associated with SYMBOL.
2715
2715
Returns T if the property list had the specified property; NIL otherwise.")
2716
2716
 
2717
 
(docfun rename-file function (filespec new-filespec) "
 
2717
(docfun rename-file function (filespec new-filespec &key (if-exists :error)) "
2718
2718
Renames the file specified by FILESPEC as specified by NEW-FILESPEC.  Returns
2719
2719
as three values the new pathname, the old full pathname, and the new full
2720
2720
pathname.  FILESPEC and NEW-FILESPEC may be a symbol, a string, a pathname, or
2721
 
a file stream.")
 
2721
a file stream.
 
2722
 
 
2723
:IF-EXISTS is an ECL-specific extension that modifies the behavior of rename-file
 
2724
if new-filespec already exists. It may be :ERROR (the default), NIL, :SUPERSEDE,
 
2725
or T.")
2722
2726
 
2723
2727
(docfun rename-package function (package new-name &optional (new-nicknames nil)) "
2724
2728
Renames PACKAGE to NEW-NAME and replaces the nicknames with NEW-NICKNAMES.