* [TUHS] user-level v1
@ 2019-09-15 16:17 Doug McIlroy
2019-09-15 20:11 ` Warren Toomey
0 siblings, 1 reply; 6+ messages in thread
From: Doug McIlroy @ 2019-09-15 16:17 UTC (permalink / raw)
To: tuhs
The TUHS archive does not include /usr/src for v1. Does it
exist anywhere?
doug
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [TUHS] user-level v1
2019-09-15 16:17 [TUHS] user-level v1 Doug McIlroy
@ 2019-09-15 20:11 ` Warren Toomey
2019-09-15 22:09 ` Dave Horsfall
0 siblings, 1 reply; 6+ messages in thread
From: Warren Toomey @ 2019-09-15 20:11 UTC (permalink / raw)
To: Doug McIlroy; +Cc: tuhs
On Sun, Sep 15, 2019 at 12:17:52PM -0400, Doug McIlroy wrote:
> The TUHS archive does not include /usr/src for v1. Does it
> exist anywhere?
We've not been able to find it, no :-(
Cheers Doug,
Warren
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [TUHS] user-level v1
2019-09-15 20:11 ` Warren Toomey
@ 2019-09-15 22:09 ` Dave Horsfall
2019-09-15 23:15 ` Clem cole
0 siblings, 1 reply; 6+ messages in thread
From: Dave Horsfall @ 2019-09-15 22:09 UTC (permalink / raw)
To: The Eunuchs Hysterical Society
On Mon, 16 Sep 2019, Warren Toomey wrote:
>> The TUHS archive does not include /usr/src for v1. Does it exist
>> anywhere?
>
> We've not been able to find it, no :-(
Speaking of which, I heard that the curses library was simply ripped out
of VI and made stand-alone; a rumour goes that the best test suite for
curses was the game "rogue" :-) I still play it from time to time, but
cannot get rog-o-matic to compile on the Mac.
-- Dave
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [TUHS] user-level v1
2019-09-15 22:09 ` Dave Horsfall
@ 2019-09-15 23:15 ` Clem cole
2019-09-16 6:03 ` arnold
0 siblings, 1 reply; 6+ messages in thread
From: Clem cole @ 2019-09-15 23:15 UTC (permalink / raw)
To: Dave Horsfall; +Cc: The Eunuchs Hysterical Society
Yes, Ken Arnold did both
Sent from my PDP-7 Running UNIX V0 expect things to be almost but not quite.
> On Sep 15, 2019, at 6:09 PM, Dave Horsfall <dave@horsfall.org> wrote:
>
> On Mon, 16 Sep 2019, Warren Toomey wrote:
>
>>> The TUHS archive does not include /usr/src for v1. Does it exist anywhere?
>>
>> We've not been able to find it, no :-(
>
> Speaking of which, I heard that the curses library was simply ripped out of VI and made stand-alone; a rumour goes that the best test suite for curses was the game "rogue" :-) I still play it from time to time, but cannot get rog-o-matic to compile on the Mac.
>
> -- Dave
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [TUHS] user-level v1
2019-09-15 23:15 ` Clem cole
@ 2019-09-16 6:03 ` arnold
2019-09-16 14:40 ` Clem Cole
0 siblings, 1 reply; 6+ messages in thread
From: arnold @ 2019-09-16 6:03 UTC (permalink / raw)
To: dave, clemc; +Cc: tuhs
No, Bill Joy did vi. Ken Arnold did curses. The vi code did all it's
stuff directly with the termlib library calls. (Use The Source, Luke!)
Curses provided a library explicitly for screen oriented stuff that worked
at a higher level.
Mary Anne can and should tell the story of the progression of curses
to System V and terminfo.
Arnold
Clem cole <clemc@ccc.com> wrote:
> Yes, Ken Arnold did both
>
> Sent from my PDP-7 Running UNIX V0 expect things to be almost but not quite.
>
> > On Sep 15, 2019, at 6:09 PM, Dave Horsfall <dave@horsfall.org> wrote:
> >
> > On Mon, 16 Sep 2019, Warren Toomey wrote:
> >
> >>> The TUHS archive does not include /usr/src for v1. Does it exist anywhere?
> >>
> >> We've not been able to find it, no :-(
> >
> > Speaking of which, I heard that the curses library was simply ripped out of VI and made stand-alone; a rumour goes that the best test suite for curses was the game "rogue" :-) I still play it from time to time, but cannot get rog-o-matic to compile on the Mac.
> >
> > -- Dave
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [TUHS] user-level v1
2019-09-16 6:03 ` arnold
@ 2019-09-16 14:40 ` Clem Cole
0 siblings, 0 replies; 6+ messages in thread
From: Clem Cole @ 2019-09-16 14:40 UTC (permalink / raw)
To: Aharon Robbins; +Cc: The Eunuchs Hysterical Society
[-- Attachment #1: Type: text/plain, Size: 1014 bytes --]
On Mon, Sep 16, 2019 at 2:03 AM <arnold@skeeve.com> wrote:
> No, Bill Joy did vi. Ken Arnold did curses. The vi code did all it's
> stuff directly with the termlib library calls.
>
Both of those statements are true. But the other truth is that Ken took
the code from vi to create the original curses library.
You are correct, vi did not use curses as a library. It was hard coded.
Similarly, termcap started out the same way. In fact, I know Cornell's
fred and I thought a number of other early Unix screen editors like the
original Rand e, were hardcoded for specific terminals (I personally put
the code for the Lsi and Fox into Fred which was what we mostly had at
CMU). As UCB got more and more different displays, the routines for
terminal control also got pulled out and put into a separate library. Mary
Ann eventually became the main person behind it and I'll let her add the
details of who did what (I'm under the impression, wnj did the first cut of
termlib and then Mary Ann overhauled it).
[-- Attachment #2: Type: text/html, Size: 1843 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-09-16 14:41 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-15 16:17 [TUHS] user-level v1 Doug McIlroy
2019-09-15 20:11 ` Warren Toomey
2019-09-15 22:09 ` Dave Horsfall
2019-09-15 23:15 ` Clem cole
2019-09-16 6:03 ` arnold
2019-09-16 14:40 ` Clem Cole
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).