Re: "Process terminated by SIGINT"?
- From: Steven Levine <steve53@xxxxxxxxxxxxxxxxxxx>
- Date: Tue, 28 Feb 2006 21:38:39 GMT
In <440371c8$0$463$bb4e3ad8@xxxxxxxxxxxx>, on 02/27/2006
at 03:42 PM, Alex Taylor <mail.me@xxxxxxxxxxxxxxxx> said:
Apparently, the answer is "yes". I compiled it with OW 1.4 and the
SIGINT message is gone. :)
:-)
Well, OK, insert "After some makefile fiddling..." before the second
sentence of the paragraph above... :)
I suspect you mean, "until some makefile twiddling is applied," but I
know this well. As Michal mentioned, there's the -ms switch. It's handy
when it works.
The Watcom command line options are different and there are a lot of them.
I don't find the documentation all that difficult to handle beyond that
fact that there's a lot of it. It's not difficult to search if you use
view.exe. Newview is much prettier, but just does not do searches the way
I do.
When searching from the command line, I handle the documentation volume
with the appended 4os2 script. It lets me view as much or as little of
the documentation as I need with a minimum of keystrokes.
Steven
--
--------------------------------------------------------------------------------------------
Steven Levine <steve53@xxxxxxxxxxxxxxxxxxx> MR2/ICE 2.67 #10183
Warp/eCS/DIY/14.103a_W4 www.scoug.com irc.fyrelizard.com #scoug (Wed 7pm PST)
--------------------------------------------------------------------------------------------
@echo off
:: WatInf - View Watcom INFs
:: 09 May 05 SHL Baseline
:: 11 Aug 05 SHL Add smart selection
on errormsg pause
setlocal
if "%WATCOM" == "" call Watcom
cdd %WATCOM\binp\help
set W=
set T=
iff "%@substr[%1,0,1]" == "-" then
echo Usage watinf [-h] [?] [infs...] [topic]
quit
elseiff "%1" == "" then
set W=WATINF
elseiff "%1" == "?" then
set NF=%@unique[%TMP]
select echo ( *.inf ) >>%NF
for %X in ( @%NF ) set W=%W %@name[%X]
del /q %NF
else
for %X in ( %$ ) do (
iff exist %X then
set W=%W %X
elseiff exist %X.inf then
set W=%W %X
elseiff exist %X*.inf then
set W=%W %@name[%@expand[%X*.inf]]
elseiff exist *%X*.inf then
set W=%W %@name[%@expand[*%X*.inf]]
elseiff "%X" == "WATINF" then
set W=%W %X
else
set T=%T %X %+ rem Assume topic
endiff
)
endiff
set W=%@trim[%W]
set T=%@trim[%T]
iff "%W" == "" then
echo Nothing selected for %$
else
set W=%@replace[ ,+,%W]
echo on
view %W %T
endiff
.
- References:
- "Process terminated by SIGINT"?
- From: Alex Taylor
- Re: "Process terminated by SIGINT"?
- From: Steven Levine
- Re: "Process terminated by SIGINT"?
- From: Alex Taylor
- Re: "Process terminated by SIGINT"?
- From: Steven Levine
- Re: "Process terminated by SIGINT"?
- From: Alex Taylor
- "Process terminated by SIGINT"?
- Prev by Date: Re: "Process terminated by SIGINT"?
- Previous by thread: Re: "Process terminated by SIGINT"?
- Next by thread: Re: "Process terminated by SIGINT"?
- Index(es):
Relevant Pages
|