home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.graphics.gnuplot
- Path: sparky!uunet!mcsun!Germany.EU.net!Urmel.Informatik.RWTH-Aachen.DE!kaa!arndt
- From: arndt@kaa.informatik.rwth-aachen.de (Stefan Arndt)
- Subject: Problems with readline
- Message-ID: <arndt.721150718@kaa>
- Sender: news@Urmel.Informatik.RWTH-Aachen.DE (Newsfiles Owner)
- Nntp-Posting-Host: kaa
- Organization: Rechnerbetrieb Informatik / RWTH Aachen
- Date: 7 Nov 92 15:38:38 GMT
- Lines: 49
-
-
-
- Hello again!
-
- We have a problem with gnuplot V3.2
- We are running ISC SysV R3.2 and we have X11R4 Roells server.
-
- There is bug (?) in readline.c
- --------
-
- /* SIGTSTP defines job control */
- /* if there is job control then we need termios.h instead of termio.h */
-
- #ifdef SIGTSTP
- #define TERMIOS ---> causes wrong include
- #endif
-
-
- #ifndef MSDOS
-
- /* UNIX specific stuff */
- #ifdef TERMIOS
- #include <termios.h>
- static struct termios orig_termio, rl_termio;
- #else
- #include <termio.h>
- static struct termio orig_termio, rl_termio;
- #endif /* TERMIOS */
-
- --------
-
- On our system SIGTSTP is defined and therefor <termios.h> is included.
- But in termios.h IUCLC and ONOCR are not defined.
-
- I have fixed this by undef TERMIOS to cause the proper include.
-
- Anyway, apart from that we have problems with readline.
- ( Actually we have problems with this function with EVERY gnuish software
- i.e gdb ).
- When we are using ^P to get the last command line we still get it but
- it isn't echoed, so it is a bit like walking in the dark.
-
- So, what is the right way for our system to get readline and
- an updating plot window under X11?
-
-
- Stefan
-
- arndt@pool.informatik.rwth-aachen.de
-