svn commit: r261551 - head/sys/teken

Aleksandr Rybalko ray at FreeBSD.org
Thu Feb 6 13:28:07 UTC 2014


Author: ray
Date: Thu Feb  6 13:28:06 2014
New Revision: 261551
URL: http://svnweb.freebsd.org/changeset/base/261551

Log:
  Fix typo.
  
  Pointed by:	Ronald Klop
  Pointy hat:	ray
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/teken/teken.c

Modified: head/sys/teken/teken.c
==============================================================================
--- head/sys/teken/teken.c	Thu Feb  6 13:18:10 2014	(r261550)
+++ head/sys/teken/teken.c	Thu Feb  6 13:28:06 2014	(r261551)
@@ -339,7 +339,7 @@ teken_get_winsize(teken_t *t)
 }
 
 static void
-taken_trim_cursor_pos(teken_t *t, const teken_pos_t *new)
+teken_trim_cursor_pos(teken_t *t, const teken_pos_t *new)
 {
 	const teken_pos_t *cur;
 
@@ -357,7 +357,7 @@ void
 teken_set_winsize(teken_t *t, const teken_pos_t *p)
 {
 
-	taken_trim_cursor_pos(t, p);
+	teken_trim_cursor_pos(t, p);
 	t->t_winsize = *p;
 	teken_subr_do_reset(t);
 }
@@ -366,7 +366,7 @@ void
 teken_set_winsize_noreset(teken_t *t, const teken_pos_t *p)
 {
 
-	taken_trim_cursor_pos(t, p);
+	teken_trim_cursor_pos(t, p);
 	t->t_winsize = *p;
 	teken_subr_do_resize(t);
 }


More information about the svn-src-head mailing list