Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 May 2018 20:35:17 +0000 (UTC)
From:      =?UTF-8?Q?Jean-S=c3=a9bastien_P=c3=a9dron?= <dumbbell@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r333995 - head/sys/teken
Message-ID:  <201805212035.w4LKZH0e091649@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dumbbell
Date: Mon May 21 20:35:16 2018
New Revision: 333995
URL: https://svnweb.freebsd.org/changeset/base/333995

Log:
  teken: Rename the "Set Cursor Style" sequence to match vt100.net docs
  
  This fixes inconsistencies with the rest of the `sequences` file.
  
  No functional changes.
  
  Requested by:	ed

Modified:
  head/sys/teken/sequences
  head/sys/teken/teken_subr.h

Modified: head/sys/teken/sequences
==============================================================================
--- head/sys/teken/sequences	Mon May 21 20:23:04 2018	(r333994)
+++ head/sys/teken/sequences	Mon May 21 20:35:16 2018	(r333995)
@@ -48,7 +48,7 @@ CUF	Cursor Forward				^[ [ a		n
 CUP	Cursor Position				^[ [ H		n n
 CUP	Cursor Position				^[ [ f		n n
 CUU	Cursor Up				^[ [ A		n
-CS	Cursor style				^[ [ SP q	r
+DECSCUSR	Set Cursor Style		^[ [ SP q	r
 DA1	Primary Device Attributes		^[ [ c		r
 DA2	Secondary Device Attributes		^[ [ > c	r
 DC	Delete character			^[ [ P		n

Modified: head/sys/teken/teken_subr.h
==============================================================================
--- head/sys/teken/teken_subr.h	Mon May 21 20:23:04 2018	(r333994)
+++ head/sys/teken/teken_subr.h	Mon May 21 20:35:16 2018	(r333995)
@@ -372,7 +372,7 @@ teken_subr_cursor_up(teken_t *t, unsigned int nrows)
 }
 
 static void
-teken_subr_cursor_style(teken_t *t, unsigned int style)
+teken_subr_set_cursor_style(teken_t *t, unsigned int style)
 {
 
 	/* TODO */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805212035.w4LKZH0e091649>