Module Name:    src
Committed By:   roy
Date:           Thu Mar 23 00:39:06 UTC 2017

Modified Files:
        src/lib/libterminfo: term.h

Log Message:
Allow terminfo users to update flag and numeric capabilities as they do
strings.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libterminfo/term.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libterminfo/term.h
diff -u src/lib/libterminfo/term.h:1.21 src/lib/libterminfo/term.h:1.22
--- src/lib/libterminfo/term.h:1.21	Thu Mar 23 00:36:37 2017
+++ src/lib/libterminfo/term.h	Thu Mar 23 00:39:06 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: term.h,v 1.21 2017/03/23 00:36:37 roy Exp $ */
+/* $NetBSD: term.h,v 1.22 2017/03/23 00:39:06 roy Exp $ */
 
 /*
  * Copyright (c) 2009, 2010, 2011, 2013 The NetBSD Foundation, Inc.
@@ -1933,8 +1933,8 @@ typedef struct {
 	/* We need to expose these so that the macros work */
 	const char *name;
 	const char *desc;
-	const signed char *flags;
-	const short *nums;
+	signed char *flags;
+	short *nums;
 	const char **strs;
 } TERMINAL;
 #endif

Reply via email to