]> git.eshelyaron.com Git - emacs.git/commitdiff
Removed some unnecessary undef INTERRUPT_INPUTs from src/s
authorGlenn Morris <rgm@gnu.org>
Wed, 11 Jul 2012 07:38:33 +0000 (00:38 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 11 Jul 2012 07:38:33 +0000 (00:38 -0700)
* src/s/bsd-common.h, src/s/cygwin.h: No need to undefine INTERRUPT_INPUT,
since nothing has defined it on these platforms.

src/ChangeLog
src/s/bsd-common.h
src/s/cygwin.h

index eb28180b7c36edc94c734c2ff58766c32a967bc5..de97c08c6fcb466be3823b0256907b0fa7bb5e11 100644 (file)
@@ -24,6 +24,9 @@
 
 2012-07-11  Glenn Morris  <rgm@gnu.org>
 
+       * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
+       since nothing has defined it on these platforms.
+
        * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
        * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
 
index 184ba7d036bd3a239d94284992fa7f6389591d07..2e25ff63486453b48a6854048a04a5f74d48771b 100644 (file)
@@ -47,10 +47,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
    for X functions taking float or double parameters.  */
 #define NARROWPROTO 1
 
-/* Do not use interrupt_input = 1 by default, because in 4.3
-   we can make noninterrupt input work properly.  */
-#undef INTERRUPT_INPUT
-
 /* First pty name is /dev/ptyp0.  */
 #define FIRST_PTY_LETTER 'p'
 
index cf418135b8d170f87932372b0251b118fe9ce1e7..282f95232237cac5c697cb33ba8149cc5f21b356 100644 (file)
@@ -17,29 +17,6 @@ GNU General Public License for more details.
 You should have received a copy of the GNU General Public License
 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 
-/* Emacs can read input using SIGIO and buffering characters itself,
-   or using CBREAK mode and making C-g cause SIGINT.
-   The choice is controlled by the variable interrupt_input.
-
-   Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
-
-   Emacs uses the presence or absence of the SIGIO and BROKEN_SIGIO macros
-   to indicate whether or not signal-driven I/O is possible.  It uses
-   INTERRUPT_INPUT to decide whether to use it by default.
-
-   SIGIO can be used only on systems that implement it (4.2 and 4.3).
-   CBREAK mode has two disadvantages
-     1) At least in 4.2, it is impossible to handle the Meta key properly.
-        I hear that in system V this problem does not exist.
-     2) Control-G causes output to be discarded.
-        I do not know whether this can be fixed in system V.
-
-   Another method of doing input is planned but not implemented.
-   It would have Emacs fork off a separate process
-   to read the input and send it to the true Emacs process
-   through a pipe. */
-#undef INTERRUPT_INPUT
-
 /* Define HAVE_PTYS if the system supports pty devices.  */
 #define HAVE_PTYS
 #define PTY_ITERATION          int i; for (i = 0; i < 1; i++) /* ick */