]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/process.c (Qprocessp): Don't declare static.
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 15 Apr 2011 00:58:49 +0000 (21:58 -0300)
committerStefan Monnier <monnier@iro.umontreal.ca>
Fri, 15 Apr 2011 00:58:49 +0000 (21:58 -0300)
* src/lisp.h (Qprocessp): Declare again.

src/ChangeLog
src/lisp.h
src/process.c

index 2b0df1f7a30195c79ce7486b82b5bc3a9637ef23..e3e6862f7e8f34d6890ac2a362302e5765aab3f0 100644 (file)
@@ -1,3 +1,8 @@
+2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * process.c (Qprocessp): Don't declare static.
+       * lisp.h (Qprocessp): Declare again.
+
 2011-04-14  Paul Eggert  <eggert@cs.ucla.edu>
 
        Improve C-level modularity by making more things 'static'.
index 8b8e25eb689be9a1e60c51d10aacb12790e22cd1..96c8e42995b5194baa521e81e59bda46c7a45e00 100644 (file)
@@ -3194,12 +3194,13 @@ extern int inhibit_window_system;
 /* Nonzero means that a filter or a sentinel is running.  */
 extern int running_asynch_code;
 
-/* Defined in process.c */
+/* Defined in process.c */
 extern Lisp_Object QCtype, Qlocal;
 EXFUN (Fget_buffer_process, 1);
 EXFUN (Fprocess_status, 1);
 EXFUN (Fkill_process, 2);
 EXFUN (Fwaiting_for_user_input_p, 0);
+extern Lisp_Object Qprocessp;
 extern void kill_buffer_processes (Lisp_Object);
 extern int wait_reading_process_output (int, int, int, int,
                                         Lisp_Object,
index 741f2e363f3a08ccae81f797f5cc9314e1338b15..e9ac324845b38621c460a8b2b6f934c0ad80d3f5 100644 (file)
@@ -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;