X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fruntime.c;h=49c007bff6179ba8489d92cb48b51ad9170e5e51;hb=37d3828773e2f847bb1ed7522b0af4fb8e736fc8;hp=7548e1cddadc209b66da8b445c175047b9a42a06;hpb=17e630f7dcb8f8a46361f5a09a872a280449ac33;p=sbcl.git diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 7548e1c..49c007b 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -95,7 +95,7 @@ void sigint_init(void) { SHOW("entering sigint_init()"); - install_handler(SIGINT, sigint_handler); + install_handler(SIGINT, sigint_handler, 1); SHOW("leaving sigint_init()"); } @@ -362,7 +362,7 @@ void setup_locale() #ifndef LISP_FEATURE_WIN32 fprintf(stderr, "WARNING: Setting locale failed.\n"); - fprintf(stderr, " Check the following varaibles for correct values:"); + fprintf(stderr, " Check the following variables for correct values:"); if (setlocale(LC_CTYPE, "") == NULL) { print_locale_variable("LC_ALL");