Raymond Toy pushed to branch issue-298-with-float-rounding-mode at cmucl / cmucl
Commits: 07a1669b by Raymond Toy at 2024-04-08T06:05:43-07:00 Update cmucl.pot for changed docstring for with-float-rounding-mode.
- - - - -
1 changed file:
- src/i18n/locale/cmucl.pot
Changes:
===================================== src/i18n/locale/cmucl.pot ===================================== @@ -4871,20 +4871,23 @@ msgstr "" #: src/code/float-trap.lisp msgid "" "Execute BODY with the floating-point rounding mode set to\n" -" ROUNDING-MODE. ROUNDING-MODE must a one of\n" +" ROUNDING-MODE. ROUNDING-MODE must be a one:\n" "\n" -" :NEAREST\n" -" the default mode of round to nearest even\n" -" :ZERO\n" +" :NEAREST\n" +" the default mode of round to nearest even.\n" +" :ZERO\n" " round numbers down towards zero. Positive numbers round down\n" " and negative numbers round up.\n" -" :POSITIVE-INFINITY\n" -" round numbers up towards positive infinity\n" -" :NEGATIVE-INFINITY\n" -" round numbers down towards negative infinity\n" +" :POSITIVE-INFINITY\n" +" round numbers up towards positive infinity.\n" +" :NEGATIVE-INFINITY\n" +" round numbers down towards negative infinity.\n" +"\n" +" These are the same as the possible values for the rounding mode in\n" +" SET-FLOATING-POINT-MODES.\n" "\n" " Only the rounding mode is restored on exit; other floating-point\n" -" modes are not modified. " +" modes are not modified." msgstr ""
#: src/code/float.lisp
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/07a1669bc15220db5ab70c43...