Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6c60eb9f
Commit
6c60eb9f
authored
Apr 14, 2011
by
Stefan Monnier
Browse files
* src/process.c (Qprocessp): Don't declare static.
* src/lisp.h (Qprocessp): Declare again.
parent
dd19b04f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
3 deletions
+9
-3
src/ChangeLog
src/ChangeLog
+5
-0
src/lisp.h
src/lisp.h
+2
-1
src/process.c
src/process.c
+2
-2
No files found.
src/ChangeLog
View file @
6c60eb9f
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'.
...
...
src/lisp.h
View file @
6c60eb9f
...
...
@@ -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
,
...
...
src/process.c
View file @
6c60eb9f
...
...
@@ -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> /*
s
ome typedefs are used in sys/file.h */
#include <sys/types.h> /*
S
ome 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;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment