adjustment to Tru64.

svn path=/trunk/kdebase/konsole/; revision=65147
wilder-portage
Lars Doelle 26 years ago
parent e9a13230dc
commit a7fd086676
  1. 5
      README
  2. 4
      README.keyboard
  3. 2
      README.unicode
  4. 2
      README.utmp
  5. 5
      other/README.Desktop
  6. 10
      src/TEPty.C
  7. 4
      src/konsole.C
  8. 5
      src/main.C

@ -1,7 +1,4 @@
Konsole is an X terminal emulation.
Before sending out any reports about broken or missing features, please
check the newest TODO and the html documentation that comes with konsole.
Share and enjoy,
Share and enjoy it,
Lars

@ -1,9 +1,5 @@
[README.keyboard]
Some keyboard configuration stuff is currently work in progress.
to be completed, very soon. Here is preliminary information.
The *.keytab files (located in $KDEDIR/share/apps/konsole) allow
to configure the keyboard due to your specific environment.

@ -1,6 +1,6 @@
[README.unicode]
Konsole now supports unicode, which means one can display up
Konsole supports unicode, which means one can display up
to 64K different glyphs at the same time on one screen.
The enhancement is pretty complete and the main current

@ -1,7 +1,5 @@
[README.utmp]
The following only applies to non FreeBSD/OpenBSD boxes.
The utmp support provided with konsole is established
by a separate program, kwrited. This program is expected
to be started in startkde and runs as a demon.

@ -1,3 +1,6 @@
[README.Desktop]
The session offered to be created in the File menu are
taken from from configurations files with a *.desktop
pattern either located in $KDEDIR/share/apps/konsole
or ~/.kde/share/apps/konsole.

@ -9,6 +9,11 @@
/* This file is part of Konsole - an X terminal for KDE */
/* -------------------------------------------------------------------------- */
/* If you're compiling konsole on non-Linux platforms and find
problems that you can track down to this file, please have
a look into ../README.ports, too.
*/
/*! \file
*/
@ -68,6 +73,11 @@
#define _BSD_SOURCE
#endif
#ifdef __osf__
#define _OSF_SOURCE
#include <float.h>
#endif
#include <stdlib.h>
#include <stdio.h>

@ -26,6 +26,7 @@
/*TODO:
- allow to set coded
- officially declare this file to be hacked to death. ;^)
- merge into konsole_part.
*/
/*STATE:
@ -37,12 +38,15 @@
are pretty stable, the upper level material has certainly drifted.
Everything related to Sessions, Configuration has to be redesigned.
It seems that the konsole now falls apart into individual sessions
and a session manager.
Time to start a requirement list.
- Rework the Emulation::setConnect logic.
Together with session changing (Shift-Left/Right, Ctrl-D) it allows
key events to propagate to other sessions.
- Get rid of the unconfigurable, uncallable initial "Konsole" session.
Leads to code replication in konsole_part and other issues. Related
to the booting of konsole, thus matter of redesign.

@ -21,6 +21,7 @@
#include <kaboutdata.h>
#include <kcmdlineargs.h>
#include <kimageio.h>
#include <dcopclient.h>
#include "konsole.h"
static const char *description =
@ -164,6 +165,10 @@ int main(int argc, char* argv[])
// ///////////////////////////////////////////////
// a.dcopClient()->registerAs(a.name()); //FIXME: Experimental
// ///////////////////////////////////////////////
putenv((char*)"COLORTERM="); // to trigger mc's color detection
if (a.isRestored())

Loading…
Cancel
Save