diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-04-14 21:58:49 -0300 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2011-04-14 21:58:49 -0300 |
commit | 6c60eb9f2c4778c5fc07dd44b283edeb8583a3a0 (patch) | |
tree | b195b32210e199076e4287f6085f03b9407c44f2 /src/process.c | |
parent | dd19b04f04532ef0a38a40e37123d03998f18c4a (diff) | |
download | emacs-6c60eb9f2c4778c5fc07dd44b283edeb8583a3a0.tar.gz emacs-6c60eb9f2c4778c5fc07dd44b283edeb8583a3a0.tar.bz2 emacs-6c60eb9f2c4778c5fc07dd44b283edeb8583a3a0.zip |
* src/process.c (Qprocessp): Don't declare static.
* src/lisp.h (Qprocessp): Declare again.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 741f2e363f3..e9ac324845b 100644 --- a/src/process.c +++ b/src/process.c @@ -24,7 +24,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include <stdio.h> #include <errno.h> #include <setjmp.h> -#include <sys/types.h> /* some typedefs are used in sys/file.h */ +#include <sys/types.h> /* Some typedefs are used in sys/file.h. */ #include <sys/file.h> #include <sys/stat.h> #include <setjmp.h> @@ -127,7 +127,7 @@ int inhibit_sentinels; #ifdef subprocesses -static Lisp_Object Qprocessp; +Lisp_Object Qprocessp; static Lisp_Object Qrun, Qstop, Qsignal; static Lisp_Object Qopen, Qclosed, Qconnect, Qfailed, Qlisten; Lisp_Object Qlocal; |