1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

(scm_lookupcar1): Report "Variable used before given a value" insetad

of an "Unbound" one for variables that are found but still contain
SCM_UNDEFINED.
This commit is contained in:
Marius Vollmer 2004-08-20 13:33:28 +00:00
parent 2146fdebd8
commit a03bad878b

View file

@ -2702,7 +2702,7 @@ error_defined_variable (SCM symbol)
the displayed message.
*/
scm_error (scm_unbound_variable_key, NULL,
"Undefined variable: ~S",
"Variable used before given a value: ~S",
scm_list_1 (symbol), SCM_BOOL_F);
}