Skip to content

Commit 02e8680

Browse files
committed
fix mtoyoda#5 version and copyright bump.
1 parent 2605b55 commit 02e8680

File tree

8 files changed

+24
-28
lines changed

8 files changed

+24
-28
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 1993,1998,2013 Toyoda Masashi ([email protected])
1+
Copyright 1993,1998,2014 Toyoda Masashi ([email protected])
22

33
Everyone is permitted to do anything on this program including copying,
44
modifying, and improving, unless you try to pretend that you wrote it.

Makefile

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
#==========================================
2-
# Makefile: makefile for sl 5.0
3-
# Copyright 1993, 1998, 2013
4-
# Toyoda Masashi
2+
# Makefile: makefile for sl 5.1
3+
# Copyright 1993, 1998, 2014
4+
# Toyoda Masashi
55
6-
# Last Modified: 2013/ 5/ 5
6+
# Last Modified: 2014/03/31
77
#==========================================
88

99
CC=gcc
1010
CFLAGS=-O
1111

1212
sl: sl.c sl.h
1313
$(CC) $(CFLAGS) -o sl sl.c -lncurses
14-

README.ja.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ SL: キータイプ矯正ソフト
66
いまさらながら若干アップデートしました。
77
a,l,F,c オプションが有効です。機能は実行して確かめてください。
88

9-
Copyright 1993,1998,2013 Toyoda Masashi ([email protected])
9+
Copyright 1993,1998,2014 Toyoda Masashi ([email protected])

README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@ SL (Steam Locomotive) runs across your terminal when you type "sl" as
55
you meant to type "ls". It's just a joke command, and not usefull at
66
all.
77

8-
Copyright 1993,1998,2013 Toyoda Masashi ([email protected])
9-
10-
8+
Copyright 1993,1998,2014 Toyoda Masashi ([email protected])

sl.1

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.\"
2-
.\" Copyright 1993,1998,2013 Toyoda Masashi ([email protected])
3-
.\"
2+
.\" Copyright 1993,1998,2014 Toyoda Masashi ([email protected])
3+
.\"
44
.\" @(#)sl.1
55
.\"
6-
.TH SL 1 "May 5, 2013"
6+
.TH SL 1 "March 31, 2014"
77
.SH NAME
88
sl \- cure your bad habit of mistyping
99
.SH SYNOPSIS

sl.1.ja

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
.\"
2-
.\" Copyright 1993,2013 Toyoda Masashi.
2+
.\" Copyright 1993,2014 Toyoda Masashi.
33
44
.\" @(#)sl.1
55
.\"
6-
.TH SL 1 "May 5, 2013"
6+
.TH SL 1 "March 31, 2014"
77
.SH 名称
88
sl \- キータイプを矯正します。
99
.SH 形式

sl.c

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
/*========================================
2-
* sl.c: SL version 5.0
3-
* Copyright 1993,1998,2013
2+
* sl.c: SL version 5.01
3+
* Copyright 1993,1998,2014
44
* Toyoda Masashi
55
6-
* Last Modified: 2013/ 5/ 5
6+
* Last Modified: 2014/03/31
77
*========================================
88
*/
9+
/* sl version 5.01 : removed cursor and handling of IO */
10+
/* by Chris Seymour 2014/01/03 */
911
/* sl version 5.00 : add -c option */
10-
/* by Toyoda Masashi 2013/ 5/ 5 */
12+
/* by Toyoda Masashi 2013/05/05 */
1113
/* sl version 4.00 : add C51, usleep(40000) */
1214
/* by Toyoda Masashi 2002/12/31 */
1315
/* sl version 3.03 : add usleep(20000) */
14-
/* by Toyoda Masashi 1998/ 7/22 */
16+
/* by Toyoda Masashi 1998/07/22 */
1517
/* sl version 3.02 : D51 flies! Change options. */
16-
/* by Toyoda Masashi 1993/ 1/19 */
18+
/* by Toyoda Masashi 1993/01/19 */
1719
/* sl version 3.01 : Wheel turns smoother */
1820
/* by Toyoda Masashi 1992/12/25 */
1921
/* sl version 3.00 : Add d(D51) option */

sl.h

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*========================================
2-
* sl.h: SL version 5.0
3-
* Copyright 1993,2002,2013
4-
* Toyoda Masashi
2+
* sl.h: SL version 5.1
3+
* Copyright 1993,2002,2014
4+
* Toyoda Masashi
55
6-
* Last Modified: 2013/ 5/ 5
6+
* Last Modified: 2014/03/31
77
*========================================
88
*/
99

@@ -148,6 +148,3 @@
148148
#define C51WH12 "------'|oOo|=[]=- || || | ||=======_|__"
149149
#define C51WH13 "/~\\____|___|/~\\_| O=======O=======O |__|+-/~\\_| "
150150
#define C51WH14 "\\_/ \\_/ \\____/ \\____/ \\____/ \\_/ "
151-
152-
153-

0 commit comments

Comments
 (0)