comparison src/callproc.c @ 60891:8881d5e2d23f

(Vdoc_file_name, Vfile_name_coding_system) (Vdefault_file_name_coding_system): Remove unused declaration.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 24 Mar 2005 19:09:58 +0000
parents 0cdbbc7bf06a
children d7793ac6df62 4da4a09e8b1b
comparison
equal deleted inserted replaced
60890:a48e83530ac6 60891:8881d5e2d23f
1 /* Synchronous subprocess invocation for GNU Emacs. 1 /* Synchronous subprocess invocation for GNU Emacs.
2 Copyright (C) 1985,86,87,88,93,94,95,99, 2000,01,02,03,04 2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1999, 2000, 2001,
3 Free Software Foundation, Inc. 3 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
128 int synch_process_termsig; 128 int synch_process_termsig;
129 129
130 /* If synch_process_death is zero, 130 /* If synch_process_death is zero,
131 this is exit code of synchronous subprocess. */ 131 this is exit code of synchronous subprocess. */
132 int synch_process_retcode; 132 int synch_process_retcode;
133
134 extern Lisp_Object Vdoc_file_name;
135
136 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system;
137 133
138 /* Clean up when exiting Fcall_process. 134 /* Clean up when exiting Fcall_process.
139 On MSDOS, delete the temporary file on any kind of termination. 135 On MSDOS, delete the temporary file on any kind of termination.
140 On Unix, kill the process and any children on termination by signal. */ 136 On Unix, kill the process and any children on termination by signal. */
141 137