aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpl@ninthfloor.org <pl@ninthfloor.org>2016-11-11 17:45:45 +0100
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2016-11-14 19:05:47 +0100
commit3ca7249c8685a9ff2d8ce23273fe0313b5804473 (patch)
treee1724e39d37e39b7a1aacb20273061ed0d8b7a63
parent06f8cf8ca87a81db15816658c40b2afcd1ad5332 (diff)
downloadst-3ca7249c8685a9ff2d8ce23273fe0313b5804473.tar.gz
st-3ca7249c8685a9ff2d8ce23273fe0313b5804473.zip
tic -s -> tic -sx (Treat unknown capabilities as user-defined.)
-rw-r--r--FAQ2
-rw-r--r--Makefile2
-rw-r--r--README2
3 files changed, 3 insertions, 3 deletions
diff --git a/FAQ b/FAQ
index 3502c60..4defff9 100644
--- a/FAQ
+++ b/FAQ
@@ -6,7 +6,7 @@ Use the excellent tool of [utmp](http://git.suckless.org/utmp/) for this task.
6 6
7It means that st doesn’t have any terminfo entry on your system. Chances are 7It means that st doesn’t have any terminfo entry on your system. Chances are
8you did not `make install`. If you just want to test it without installing it, 8you did not `make install`. If you just want to test it without installing it,
9you can manualy run `tic -s st.info`. 9you can manualy run `tic -sx st.info`.
10 10
11## Nothing works, and nothing is said about an unknown terminal! 11## Nothing works, and nothing is said about an unknown terminal!
12 12
diff --git a/Makefile b/Makefile
index 6158ab2..fb026c4 100644
--- a/Makefile
+++ b/Makefile
@@ -49,7 +49,7 @@ install: all
49 @sed "s/VERSION/${VERSION}/g" < st.1 > ${DESTDIR}${MANPREFIX}/man1/st.1 49 @sed "s/VERSION/${VERSION}/g" < st.1 > ${DESTDIR}${MANPREFIX}/man1/st.1
50 @chmod 644 ${DESTDIR}${MANPREFIX}/man1/st.1 50 @chmod 644 ${DESTDIR}${MANPREFIX}/man1/st.1
51 @echo Please see the README file regarding the terminfo entry of st. 51 @echo Please see the README file regarding the terminfo entry of st.
52 @tic -s st.info 52 @tic -sx st.info
53 53
54uninstall: 54uninstall:
55 @echo removing executable file from ${DESTDIR}${PREFIX}/bin 55 @echo removing executable file from ${DESTDIR}${PREFIX}/bin
diff --git a/README b/README
index b38c88b..6a846ed 100644
--- a/README
+++ b/README
@@ -24,7 +24,7 @@ Running st
24If you did not install st with make clean install, you must compile 24If you did not install st with make clean install, you must compile
25the st terminfo entry with the following command: 25the st terminfo entry with the following command:
26 26
27 tic -s st.info 27 tic -sx st.info
28 28
29See the man page for additional details. 29See the man page for additional details.
30 30