* new '-X' option to send commands to screen sessions. * added a possibility to change the attributes/color in caption or hardstatus strings: caption always "%3n %{r}%t%{-}%? @%u%?%? %{g}[%h]%{-}%?" * new 'dinfo' command to show what screen thinks about your terminal. * new 'attrcolor' command to map attributes to color codes: * support for UTF-8: new commands 'utf8', 'defutf8' to change the encoding of a window, plus a '-U' option to tell screen that your terminal sends/receives UTF-8 codes. * support for 16 colors.
23 lines
784 B
Text
23 lines
784 B
Text
$NetBSD: patch-ab,v 1.6 2001/08/18 09:53:02 wiz Exp $
|
|
|
|
--- doc/Makefile.in.orig Fri May 25 16:50:55 2001
|
|
+++ doc/Makefile.in
|
|
@@ -27,7 +27,7 @@
|
|
|
|
info screen.info: screen.texinfo
|
|
@rm -f screen.info*
|
|
- $(MAKEINFO) $(srcdir)/screen.texinfo -o screen.info
|
|
+ $(MAKEINFO) --no-split $(srcdir)/screen.texinfo -o screen.info
|
|
|
|
install: installdirs
|
|
$(INSTALL_DATA) $(srcdir)/screen.1 $(DESTDIR)$(mandir)/man1/screen.1
|
|
@@ -35,9 +35,6 @@
|
|
-if test -f screen.info; then d=.; else d=$(srcdir); fi; \
|
|
if test -f $$d/screen.info; then \
|
|
for f in $$d/screen.info*; do $(INSTALL_DATA) $$f $(DESTDIR)$(infodir);done; \
|
|
- if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
|
- install-info --info-dir=$(DESTDIR)$(infodir) $$d/screen.info; \
|
|
- else true; fi; \
|
|
fi
|
|
|
|
uninstall:
|