*** empty log message ***
authorroot <root>
Tue, 17 Jan 2006 12:29:40 +0000 (12:29 +0000)
committerroot <root>
Tue, 17 Jan 2006 12:29:40 +0000 (12:29 +0000)
Changes
src/ptytty.h
src/rxvt.h

diff --git a/Changes b/Changes
index 4e92b8c76c8d7130d2df9fb13b29a2f8a388c4de..092030695c570168a57cc56e89a3267b8f38e3ce 100644 (file)
--- a/Changes
+++ b/Changes
@@ -26,8 +26,8 @@ WISH: support tex fonts
           being interpreted in the locale urxvt was started.
         - perl-overlays and refresh hooks were not applied in correct order.
         - changed coordinate-system of view_start/nsaved to be top to bottom.
-        - applied many patches by Emanuele Giaquinta, cleanups and
-          bugfixes in the utmp logging code and configure.
+        - complete overhaul of the pty/utmp management stuff and configure
+          (Emanuele Giaquinta).
         - removed src/strings.C and src/menubar.C. No menubar support
           anymore.
        - add tsl/fsl and related capabilities to the terminfo description,
index 2605d2cc111fafba30901894ca6deb76b194f314..8fcef8577ad2b3f13fdcf31aebb413acd7ea3e24 100644 (file)
 
 #endif
 
-struct rxvt_ptytty_unix : rxvt_ptytty {
+struct rxvt_ptytty_base : rxvt_ptytty
+{
+  virtual void put () = 0;
+};
+
+struct rxvt_ptytty_unix : rxvt_ptytty_base
+{
   char *name;
 
 #ifndef RESET_TTY_TO_COMMON_DEFAULTS
index 205d5c9fdd09c61082c66988c240760d8ccb60fc..66d781dc8a65b1c44bb837f6c110ad2e6f996428 100644 (file)
@@ -186,7 +186,6 @@ struct rxvt_ptytty {
   }
 
   virtual bool get () = 0;
-  virtual void put () = 0;
 
   virtual void login (int cmd_pid, bool login_shell, const char *hostname) = 0;
   virtual void logout () = 0;