diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-10 22:36:41 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-11 01:07:49 +0200 |
commit | cfbf916045c180c8f77f90e9c910012f18447dc9 (patch) | |
tree | 81ab4c6b0d6ff87346aaa109888b8620a2580db8 /doc | |
parent | 590a4904d28e8cd6cbee404b66ce7a475713ca28 (diff) | |
download | guix-cfbf916045c180c8f77f90e9c910012f18447dc9.tar guix-cfbf916045c180c8f77f90e9c910012f18447dc9.tar.gz |
store: The 'references' parameter of 'add-text-to-store' is now optional.
* guix/store.scm (add-text-to-store): Make 'references' optional.
* tests/store.scm ("dead-paths", "references"): Use 'add-text-to-store'
with no optional argument.
* doc/guix.texi (The Store): Adjust accordingly.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 5b91bc2982..5d1b780144 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -1061,7 +1061,7 @@ argument. Return @code{#t} when @var{path} is a valid store path. @end deffn -@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} @var{references} +@deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}] Add @var{text} under file @var{name} in the store, and return its store path. @var{references} is the list of store paths referred to by the resulting store path. |