1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-03 10:21:46 +02:00

fix for IRIX

This commit is contained in:
Oliver Kiddle 2001-11-06 15:14:11 +00:00
parent d39feeffc4
commit 9d2b48504e
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2001-11-06 Oliver Kiddle <opk@zsh.org>
* unposted: Functions/Misc/mere: fix for IRIX
* 16224: Src/jobs.c, Doc/Zsh/builtins.yo,
Completion/Unix/Type/_signals, Completion/Zsh/Command/_kill,
Completion/Zsh/Command/_jobs_builtin: add -n option to kill

View file

@ -21,6 +21,12 @@ if [[ -d /usr/share/lib/term &&
terminal=lp;
fi
# IRIX has no `man' terminal.
if [[ -d /usr/lib/nterm &&
! -e /usr/lib/nterm/tab.$terminal ]]; then
terminal=lp;
fi
# Unixware has no `man' terminal.
if [[ -d /usr/ucblib/doctools/nterm &&
! -e /usr/ucblib/doctools/nterm/tab.$terminal ]]; then