From 8ad558ea8b5db58e2a6e6e68c90b170ca5479431 Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 17 Sep 2009 19:15:49 +0000 Subject: Fixed markup. --- usr.sbin/crashinfo/crashinfo.8 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/crashinfo/crashinfo.8 b/usr.sbin/crashinfo/crashinfo.8 index fbb4ddc..897fc59 100644 --- a/usr.sbin/crashinfo/crashinfo.8 +++ b/usr.sbin/crashinfo/crashinfo.8 @@ -90,18 +90,18 @@ The options are as follows: .Bl -tag -width indent .It Fl d Ar crashdir Specify an alternate core dump directory. -The default crash dump directory is +The default crash dump directory is .Pa /var/crash . .It Fl n Ar dumpnr Use the core dump saved in .Pa vmcore. Ns Ar dumpnr -instead of the latest core in the core dump directory. +instead of the latest core in the core dump directory. .It Fl k Ar kernel Specify an explicit kernel file. .El .Sh SEE ALSO -.Xr savecore 8 , -.Xr textdump 4 +.Xr textdump 4 , +.Xr savecore 8 .Sh HISTORY The .Nm -- cgit v1.1 From c5e6411ab0edaeeea43e807adb2b606cd10c38c8 Mon Sep 17 00:00:00 2001 From: ed Date: Fri, 18 Sep 2009 13:44:39 +0000 Subject: Spell Israel correctly. Submitted by: Alexey Savartsov PR: bin/138580 --- usr.sbin/sysinstall/menus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.sbin') diff --git a/usr.sbin/sysinstall/menus.c b/usr.sbin/sysinstall/menus.c index 9376ed1..8ea7f98 100644 --- a/usr.sbin/sysinstall/menus.c +++ b/usr.sbin/sysinstall/menus.c @@ -691,7 +691,7 @@ DMenu MenuMediaFTP = { { " Ireland #3", "ftp3.ie.freebsd.org", NULL, dmenuSetVariable, NULL, VAR_FTP_PATH "=ftp://ftp3.ie.freebsd.org" }, - { "Isreal", "ftp.il.freebsd.org", NULL, dmenuSetVariable, NULL, + { "Israel", "ftp.il.freebsd.org", NULL, dmenuSetVariable, NULL, VAR_FTP_PATH "=ftp://ftp.il.freebsd.org" }, { "Italy", "ftp.it.freebsd.org", NULL, dmenuSetVariable, NULL, -- cgit v1.1 From 48c86dac0525a55eff2b75b5ba8dc573d1014cfe Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 19 Sep 2009 17:56:26 +0000 Subject: Make the keyboard layer Unicode aware. Just take keyent_t to use an u_int to store the Unicode codepoints. Unfortunately the keymap is now too big to be loaded using an ioctl argument, so change the ioctl to pick a pointer. This change breaks kbdcontrol ABI. It doesn't break X11, because X11 doesn't do anything with syscons keymaps. It just switches the device out of K_XLATE. Obtained from: //depot/user/ed/newcons/... --- usr.sbin/kbdcontrol/kbdcontrol.c | 2 +- usr.sbin/kbdcontrol/kbdmap.5 | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/kbdcontrol/kbdcontrol.c b/usr.sbin/kbdcontrol/kbdcontrol.c index bbeb758..5d20b16 100644 --- a/usr.sbin/kbdcontrol/kbdcontrol.c +++ b/usr.sbin/kbdcontrol/kbdcontrol.c @@ -256,7 +256,7 @@ get_entry(void) case TLET: return (unsigned char)letter; case TNUM: - if (number < 0 || number > 255) + if (number < 0x000000 || number > 0x10FFFF) return -1; return number; default: diff --git a/usr.sbin/kbdcontrol/kbdmap.5 b/usr.sbin/kbdcontrol/kbdmap.5 index 2b94b35..4c4cd86 100644 --- a/usr.sbin/kbdcontrol/kbdmap.5 +++ b/usr.sbin/kbdcontrol/kbdmap.5 @@ -84,7 +84,7 @@ The symbol the key should produce, in single quotes. .It Ar decnum The -.Tn ASCII +.Tn Unicode value to produce as a decimal number (see @@ -92,7 +92,7 @@ as a decimal number For example, 32 for space. .It 0x Ns Ar hexnum The -.Tn ASCII +.Tn Unicode value to produce as a hexadecimal number. For example, 0x20 for space. @@ -274,7 +274,7 @@ This is followed by the symbol for the accent, given in single quotes or as a decimal or hexadecimal -.Tn ASCII +.Tn Unicode value. This symbol will be produced if the accent key is pressed and @@ -290,7 +290,7 @@ Both symbols in a pair can be given in either single quotes or as decimal or hexadecimal -.Tn ASCII +.Tn Unicode values. .Pp For example, -- cgit v1.1