Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 83ce6c9e by Raymond Toy at 2015-06-13T18:30:41Z Regenerated.
- - - - -
1 changed file:
- src/i18n/locale/cmucl-unix.pot
Changes:
===================================== src/i18n/locale/cmucl-unix.pot ===================================== --- a/src/i18n/locale/cmucl-unix.pot +++ b/src/i18n/locale/cmucl-unix.pot @@ -1236,3 +1236,50 @@ msgid "" " and its children." msgstr ""
+#: src/code/unix.lisp +msgid "" +"Get the value of the environment variable named Name. If no such\n" +" variable exists, Nil is returned." +msgstr "" + +#: src/code/unix.lisp +msgid "" +"Adds the environment variable named Name to the environment with\n" +" the given Value if Name does not already exist. If Name does exist,\n" +" the value is changed to Value if Overwrite is non-zero. Otherwise,\n" +" the value is not changed." +msgstr "" + +#: src/code/unix.lisp +msgid "" +"Adds or changes the environment. Name-value must be a string of\n" +" the form "name=value". If the name does not exist, it is added.\n" +" If name does exist, the value is updated to the given value." +msgstr "" + +#: src/code/unix.lisp +msgid "Removes the variable Name from the environment" +msgstr "" + +#: src/code/unix.lisp +msgid "" +"Executes the Unix execve system call. If the system call suceeds, lisp\n" +" will no longer be running in this process. If the system call fails " +"this\n" +" function returns two values: NIL and an error code. Arg-list should be " +"a\n" +" list of simple-strings which are passed as arguments to the exec'ed " +"program.\n" +" Environment should be an a-list mapping symbols to simple-strings which " +"this\n" +" function bashes together to form the environment for the exec'ed " +"program." +msgstr "" + +#: src/code/unix.lisp +msgid "" +"Executes the unix fork system call. Returns 0 in the child and the pid\n" +" of the child in the parent if it works, or NIL and an error number if it\n" +" doesn't work." +msgstr "" +
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/83ce6c9e7cd6b3fed407255d83...