(index ("errorf" 0) ("errorf/no-raise" 377) ("error/no-raise" 613) ("*error/no-raise" 829) ("error-format-procedure" 978))
(def (sig (procedure "(errorf [LOCATION] FORMAT [ARG ...])" (id errorf))) (p "Invoke " (tt "error") " with a message built by the " (tt "(error-format-procedure)") ".") (p "Should the argument list not match the criteria for a " (tt "format") " argument list then the arguments are passed directly to " (tt "error") ". The point being " (tt "errorf") " will raise an error."))
(def (sig (procedure "(errorf/no-raise [LOCATION] FORMAT [ARG...] [PORT (current-error-port)])" (id errorf/no-raise))) (p "Displays a message like " (tt "errorf") " but does not raise an error. Message is written to " (tt "PORT") "."))
(def (sig (procedure "(error/no-raise [ARG ...] [PORT (current-error-port)])" (id error/no-raise))) (p "Displays a message like " (tt "error") " but does not raise an error. Message is written to " (tt "PORT") "."))
(def (sig (procedure "(*error/no-raise ARGS [PORT (current-error-port)])" (id *error/no-raise))) (p "A list version of " (tt "error/no-raise") "."))
(def (sig (procedure "(error-format-procedure [FORMAT]) => procedure" (id error-format-procedure))) (p "Parameter for the " (tt "FORMAT") " procedure used by " (tt "errorf") ". The default is the Unit extras " (tt "format") ".") (p "For " (i "I18N") " situations " (int-link "format-compiler-base") " " (tt "format") " would be a better choice."))
