Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/wsfont Oops, forgot to commit builtin_fonts[] parts ...
details: https://anonhg.NetBSD.org/src/rev/8ba3645f2f93
branches: trunk
changeset: 1026357:8ba3645f2f93
user: rin <rin%NetBSD.org@localhost>
date: Sat Nov 20 08:16:30 2021 +0000
description:
Oops, forgot to commit builtin_fonts[] parts for Droid_Sans_Mono_10x20.
Noticed by RVP, thanks!
diffstat:
sys/dev/wsfont/wsfont.c | 13 ++++++++-----
1 files changed, 8 insertions(+), 5 deletions(-)
diffs (37 lines):
diff -r 2eda6a0f019e -r 8ba3645f2f93 sys/dev/wsfont/wsfont.c
--- a/sys/dev/wsfont/wsfont.c Sat Nov 20 01:52:51 2021 +0000
+++ b/sys/dev/wsfont/wsfont.c Sat Nov 20 08:16:30 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: wsfont.c,v 1.75 2021/11/20 00:08:23 rin Exp $ */
+/* $NetBSD: wsfont.c,v 1.76 2021/11/20 08:16:30 rin Exp $ */
/*-
* Copyright (c) 1999, 2000, 2001, 2002 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.75 2021/11/20 00:08:23 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.76 2021/11/20 08:16:30 rin Exp $");
#include "opt_wsfont.h"
@@ -281,12 +281,15 @@
#ifdef FONT_DEJAVU_SANS_MONO12x22
{ { NULL, NULL }, &DejaVu_Sans_Mono_12x22, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
#endif
+#ifdef FONT_DROID_SANS_MONO9x18
+ { { NULL, NULL }, &Droid_Sans_Mono_9x18, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
+#endif
+#ifdef FONT_DROID_SANS_MONO10x20
+ { { NULL, NULL }, &Droid_Sans_Mono_10x20, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
+#endif
#ifdef FONT_DROID_SANS_MONO12x22
{ { NULL, NULL }, &Droid_Sans_Mono_12x22, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
#endif
-#ifdef FONT_DROID_SANS_MONO9x18
- { { NULL, NULL }, &Droid_Sans_Mono_9x18, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
-#endif
#ifdef FONT_DROID_SANS_MONO19x36
{ { NULL, NULL }, &Droid_Sans_Mono_19x36, 0, 0, WSFONT_STATIC | WSFONT_BUILTIN },
#endif
Home |
Main Index |
Thread Index |
Old Index