From 77acf5b7dce7ecfcc8a66b5f3d527b10cdd74dc1 Mon Sep 17 00:00:00 2001 From: Stas Boukarev Date: Mon, 17 Dec 2012 17:35:05 +0400 Subject: [PATCH] Fix a typo. In the previous commit, varaibles -> variables. Adjust NEWS by adding lp#n. --- NEWS | 1 + src/runtime/runtime.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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"); -- 1.7.10.4