summaryrefslogtreecommitdiffstats
path: root/sys/teken
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2011-06-26 18:25:10 +0000
committered <ed@FreeBSD.org>2011-06-26 18:25:10 +0000
commit59c238c6bed4c3688cd951c136e0cd48bc67c028 (patch)
tree9a5cbbd6c9b92ba71562b413c6aa01fb5fd1fa1a /sys/teken
parent63ee2d30481a6cfa0ebc55582ca3b122de4d53c1 (diff)
downloadFreeBSD-src-59c238c6bed4c3688cd951c136e0cd48bc67c028.zip
FreeBSD-src-59c238c6bed4c3688cd951c136e0cd48bc67c028.tar.gz
Fix various whitespace inconsistencies in sys/teken.
Diffstat (limited to 'sys/teken')
-rw-r--r--sys/teken/demo/teken_demo.c6
-rw-r--r--sys/teken/gensequences4
-rw-r--r--sys/teken/libteken/teken.32
-rw-r--r--sys/teken/teken.c2
-rw-r--r--sys/teken/teken_subr.h4
5 files changed, 9 insertions, 9 deletions
diff --git a/sys/teken/demo/teken_demo.c b/sys/teken/demo/teken_demo.c
index 0700763..16bb4b7 100644
--- a/sys/teken/demo/teken_demo.c
+++ b/sys/teken/demo/teken_demo.c
@@ -88,7 +88,7 @@ printchar(const teken_pos_t *p)
getyx(stdscr, y, x);
- px = &buffer[p->tp_col][p->tp_row];
+ px = &buffer[p->tp_col][p->tp_row];
/* Convert Unicode to UTF-8. */
if (px->c < 0x80) {
@@ -169,10 +169,10 @@ test_copy(void *s __unused, const teken_rect_t *r, const teken_pos_t *p)
* Copying is a little tricky. We must make sure we do it in
* correct order, to make sure we don't overwrite our own data.
*/
-
+
nrow = r->tr_end.tp_row - r->tr_begin.tp_row;
ncol = r->tr_end.tp_col - r->tr_begin.tp_col;
-
+
if (p->tp_row < r->tr_begin.tp_row) {
/* Copy from top to bottom. */
if (p->tp_col < r->tr_begin.tp_col) {
diff --git a/sys/teken/gensequences b/sys/teken/gensequences
index 86c7979..e0fccd4 100644
--- a/sys/teken/gensequences
+++ b/sys/teken/gensequences
@@ -3,7 +3,7 @@
#-
# Copyright (c) 2008-2009 Ed Schouten <ed@FreeBSD.org>
# All rights reserved.
-#
+#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
@@ -12,7 +12,7 @@
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
-#
+#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
diff --git a/sys/teken/libteken/teken.3 b/sys/teken/libteken/teken.3
index 2a9b291..1c2ebbe 100644
--- a/sys/teken/libteken/teken.3
+++ b/sys/teken/libteken/teken.3
@@ -148,7 +148,7 @@ These defaults can be modified using
and
.Fn teken_set_defattr .
.Pp
-The
+The
.Fn teken_get_sequence
function is a utility function that can be used to obtain escape
sequences of special keyboard keys, generated by user input.
diff --git a/sys/teken/teken.c b/sys/teken/teken.c
index cdc2cb3..8ca88d2 100644
--- a/sys/teken/teken.c
+++ b/sys/teken/teken.c
@@ -526,7 +526,7 @@ teken_get_sequence(teken_t *t, unsigned int k)
/* Default xterm sequences. */
if (k < sizeof special_strings_normal / sizeof(char *))
return (special_strings_normal[k]);
-
+
return (NULL);
}
diff --git a/sys/teken/teken_subr.h b/sys/teken/teken_subr.h
index 2934bcc..f4c78f4 100644
--- a/sys/teken/teken_subr.h
+++ b/sys/teken/teken_subr.h
@@ -260,7 +260,7 @@ teken_subr_cursor_backward_tabulation(teken_t *t, unsigned int ntabs)
break;
t->t_cursor.tp_col--;
-
+
/* Tab marker set. */
if (teken_tab_isset(t, t->t_cursor.tp_col))
ntabs--;
@@ -303,7 +303,7 @@ teken_subr_cursor_forward_tabulation(teken_t *t, unsigned int ntabs)
break;
t->t_cursor.tp_col++;
-
+
/* Tab marker set. */
if (teken_tab_isset(t, t->t_cursor.tp_col))
ntabs--;
OpenPOWER on IntegriCloud