Skip to content
Snippets Groups Projects
Commit a65cf4a4 authored by Raymond Toy's avatar Raymond Toy
Browse files

Regenerate due to new functions.

parent b4771d76
No related branches found
No related tags found
No related merge requests found
...@@ -4727,6 +4727,45 @@ msgstr "" ...@@ -4727,6 +4727,45 @@ msgstr ""
msgid "Unknown float trap kind: ~S." msgid "Unknown float trap kind: ~S."
msgstr "" msgstr ""
   
#: src/code/float-trap.lisp
msgid ""
"Sets floating-point modes according to the give options and the\n"
" specified mode, Floating-Point-Modes. The resulting new mode is\n"
" returned. If a keyword is not supplied, then the current value is\n"
" preserved. Possible keywords:\n"
"\n"
" :TRAPS\n"
" A list of the exception conditions that should cause traps. Possible"
"\n"
" exceptions are :UNDERFLOW, :OVERFLOW, :INEXACT, :INVALID,\n"
" :DIVIDE-BY-ZERO, and on the X86 :DENORMALIZED-OPERAND. Initially\n"
" all traps except :INEXACT are enabled.\n"
"\n"
" :ROUNDING-MODE\n"
" The rounding mode to use when the result is not exact. Possible "
"values\n"
" are :NEAREST, :POSITIVE-INFINITY, :NEGATIVE-INFINITY and :ZERO.\n"
" Initially, the rounding mode is :NEAREST.\n"
"\n"
" :CURRENT-EXCEPTIONS\n"
" :ACCRUED-EXCEPTIONS\n"
" These arguments allow setting of the exception flags. The main use "
"is\n"
" setting the accrued exceptions to NIL to clear them.\n"
"\n"
" :FAST-MODE\n"
" Set the hardware's \"fast mode\" flag, if any. When set, IEEE\n"
" conformance or debuggability may be impaired. Some machines may not\n"
" have this feature, in which case the value is always NIL.\n"
"\n"
" GET-FLOATING-POINT-MODES may be used to find the floating point modes\n"
" currently in effect."
msgstr ""
#: src/code/float-trap.lisp
msgid "Unknown rounding mode: ~S."
msgstr ""
#: src/code/float-trap.lisp #: src/code/float-trap.lisp
msgid "" msgid ""
"This function sets options controlling the floating-point hardware. If a\n" "This function sets options controlling the floating-point hardware. If a\n"
...@@ -4762,7 +4801,11 @@ msgid "" ...@@ -4762,7 +4801,11 @@ msgid ""
msgstr "" msgstr ""
   
#: src/code/float-trap.lisp #: src/code/float-trap.lisp
msgid "Unknown rounding mode: ~S." msgid ""
"This function returns a list representing the state of the floating point\n"
" modes given in Modes. The list is in the same format as the keyword "
"arguments to\n"
" SET-FLOATING-POINT-MODES."
msgstr "" msgstr ""
   
#: src/code/float-trap.lisp #: src/code/float-trap.lisp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment