From: Stas Boukarev Date: Mon, 17 Dec 2012 13:35:05 +0000 (+0400) Subject: Fix a typo. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=77acf5b7dce7ecfcc8a66b5f3d527b10cdd74dc1;p=sbcl.git Fix a typo. In the previous commit, varaibles -> variables. Adjust NEWS by adding lp#n. --- diff --git a/NEWS b/NEWS index 81a6e6e..e4aa65e 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ ;;;; -*- coding: utf-8; fill-column: 78 -*- changes relative to sbcl-1.1.2: * enhancement: warnings about bad locale settings, LANG, LC_CTYPE, etc. + (lp#727625) * bug fix: fasls are now once again directly executable (on platforms supporting shebang lines, with a suitably-installed sbcl). diff --git a/src/runtime/runtime.c b/src/runtime/runtime.c index 7548e1c..3bc18ee 100644 --- a/src/runtime/runtime.c +++ b/src/runtime/runtime.c @@ -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");