From c0eaf0fad88f15c843098a43ca2cadbf009ce094 Mon Sep 17 00:00:00 2001 From: Jonathan Neuschäfer Date: Mon, 15 Aug 2011 22:10:09 +0200 Subject: fix common misspellings * Fix spelling with codespell[1] and manually review it. [1] http://git.profusion.mobi/cgit.cgi/lucas/codespell/ --- console/display.c | 2 +- console/hurd.ti | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'console') diff --git a/console/display.c b/console/display.c index 26786c11..e807c50f 100644 --- a/console/display.c +++ b/console/display.c @@ -454,7 +454,7 @@ do_mach_notify_msg_accepted (mach_port_t notify, mach_port_t send) mutex_unlock (&display->lock); return 0; } - /* The message was succesfully queued, fall through. */ + /* The message was successfully queued, fall through. */ } /* Remove request from pending queue. */ *preq = req->next; diff --git a/console/hurd.ti b/console/hurd.ti index 504192b5..2508482a 100644 --- a/console/hurd.ti +++ b/console/hurd.ti @@ -116,7 +116,7 @@ hurd|The GNU Hurd console server, kpp=\E[5~, knp=\E[6~, # Keycode for center of keypad area. kb2=\E[G, -# Mouse event has occured. +# Mouse event has occurred. kmous=\E[M, # Text attribute capabilities. -- cgit v1.2.3 From f605070d37c741436b5f82745eae2a5c018e304d Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 21 Feb 2012 12:17:10 +0100 Subject: Add `console/motd.UTF8' to the distribution. * console/Makefile (DIST_FILES): Add `motd.UTF8'. --- console/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'console') diff --git a/console/Makefile b/console/Makefile index 71f7f1e4..3eb4252e 100644 --- a/console/Makefile +++ b/console/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2002 Free Software Foundation, Inc. +# Copyright (C) 2002, 2012 Free Software Foundation, Inc. # Written by Marcus Brinkmann. # # This file is part of the GNU Hurd. @@ -25,7 +25,7 @@ target = console SRCS = console.c display.c pager.c input.c LCLHDRS = display.h pager.h input.h priv.h mutations.h -DIST_FILES = hurd.ti +DIST_FILES = hurd.ti motd.UTF8 MIGSTUBS = notifyServer.o tioctlServer.o fs_notifyUser.o -- cgit v1.2.3 From 96cd1d20a6b1d5d6150d3e76b36c104149776f3c Mon Sep 17 00:00:00 2001 From: Michael Banck Date: Sun, 8 Apr 2012 00:56:06 +0200 Subject: Set console default encoding to UTF-8 * console.c (DEFAULT_ENCODING): Set to UTF-8. --- console/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'console') diff --git a/console/console.c b/console/console.c index 0b1f42c4..cf208cff 100644 --- a/console/console.c +++ b/console/console.c @@ -59,7 +59,7 @@ int netfs_maxsymlinks = 16; /* Arbitrary. */ /* Handy source of time. */ volatile struct mapped_time_value *console_maptime; -#define DEFAULT_ENCODING "ISO-8859-1" +#define DEFAULT_ENCODING "UTF-8" #define DEFAULT_INTENSITY CONS_ATTR_INTENSITY_NORMAL #define DEFAULT_UNDERLINED 0 #define DEFAULT_BLINKING 0 -- cgit v1.2.3