comparison src/process.c @ 60892:d1daa8bf79fd

(Vfile_name_coding_system, Vdefault_file_name_coding_system): Remove unused declarations.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 24 Mar 2005 19:14:05 +0000
parents c5074bc00bcc
children f9dc4e8a41fe 2006100ee57e 4da4a09e8b1b
comparison
equal deleted inserted replaced
60891:8881d5e2d23f 60892:d1daa8bf79fd
1 /* Asynchronous subprocess control for GNU Emacs. 1 /* Asynchronous subprocess control for GNU Emacs.
2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95, 96, 98, 1999, 2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1998, 1999,
3 2001, 2002, 2003, 2004 Free Software Foundation, Inc. 3 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4 4
5 This file is part of GNU Emacs. 5 This file is part of GNU Emacs.
6 6
7 GNU Emacs is free software; you can redistribute it and/or modify 7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 8 it under the terms of the GNU General Public License as published by
373 extern EMACS_TIME timer_check (); 373 extern EMACS_TIME timer_check ();
374 extern int timers_run; 374 extern int timers_run;
375 375
376 /* Maximum number of bytes to send to a pty without an eof. */ 376 /* Maximum number of bytes to send to a pty without an eof. */
377 static int pty_max_bytes; 377 static int pty_max_bytes;
378
379 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
380 378
381 #ifdef HAVE_PTYS 379 #ifdef HAVE_PTYS
382 #ifdef HAVE_PTY_H 380 #ifdef HAVE_PTY_H
383 #include <pty.h> 381 #include <pty.h>
384 #endif 382 #endif