From: root Date: Tue, 17 Jan 2006 12:29:40 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=d8e4fefe64643ff9aa79b83b0c68109fd3186567;p=dana%2Furxvt.git *** empty log message *** --- diff --git a/Changes b/Changes index 4e92b8c7..09203069 100644 --- 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, diff --git a/src/ptytty.h b/src/ptytty.h index 2605d2cc..8fcef857 100644 --- a/src/ptytty.h +++ b/src/ptytty.h @@ -51,7 +51,13 @@ #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 diff --git a/src/rxvt.h b/src/rxvt.h index 205d5c9f..66d781dc 100644 --- a/src/rxvt.h +++ b/src/rxvt.h @@ -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;