Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
06a68321 by Raymond Toy at 2016-01-16T12:58:43Z
Regenerated.
- - - - -
1 changed file:
- src/i18n/locale/cmucl.pot
Changes:
=====================================
src/i18n/locale/cmucl.pot
=====================================
--- a/src/i18n/locale/cmucl.pot
+++ b/src/i18n/locale/cmucl.pot
@@ -6654,7 +6654,9 @@ msgid ""
msgstr ""
#: src/code/save.lisp
-msgid "An alist mapping environment variables (as keywords) to either values"
+msgid ""
+"An alist mapping each environment variable (as a keyword) to its\n"
+" value."
msgstr ""
#: src/code/save.lisp
@@ -13122,8 +13124,9 @@ msgid ""
"\n"
" The keyword arguments have the following meanings:\n"
" :env -\n"
-" An A-LIST mapping keyword environment variables to simple-string\n"
-" values.\n"
+" An A-LIST mapping keyword environment variables to\n"
+" simple-string values. This is the shell environment for\n"
+" Program. Defaults to *environment-list*.\n"
" :wait -\n"
" If non-NIL (default), wait until the created process finishes. If\n"
" NIL, continue running Lisp until the program finishes.\n"
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/06a683219621cc8e381b3d6ee…
Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
6feaee2d by Raymond Toy at 2016-01-16T08:37:03Z
Add comment on why RESTORE_FPU is needed.
- - - - -
1 changed file:
- src/lisp/x86-arch.c
Changes:
=====================================
src/lisp/x86-arch.c
=====================================
--- a/src/lisp/x86-arch.c
+++ b/src/lisp/x86-arch.c
@@ -320,6 +320,12 @@ sigtrap_handler(HANDLER_ARGS)
/* This is just for info in case monitor wants to print an approx */
current_control_stack_pointer = (unsigned long *) SC_SP(os_context);
+
+ /*
+ * In many places in the switch below, we eventually throw instead
+ * of returning from the signal handler. So, just in case, set
+ * the current FPU modes from the saved context.
+ */
RESTORE_FPU(os_context);
/*
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/6feaee2df686c62509f7c2292…