aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorEli Zaretskii2008-08-23 16:48:55 +0000
committerEli Zaretskii2008-08-23 16:48:55 +0000
commit8c57b2e5b5c46632ad3e3a9d0c3fe22ef0058d6e (patch)
tree1c9d79292cadabbc0ca646527a41fedc98dbb3b5 /src/process.c
parentce4bd1b0348ecb529d7ee6bde8031fd2079f0ded (diff)
downloademacs-8c57b2e5b5c46632ad3e3a9d0c3fe22ef0058d6e.tar.gz
emacs-8c57b2e5b5c46632ad3e3a9d0c3fe22ef0058d6e.zip
[!subprocesses]: Define QCname.
(syms_of_process): Intern and staticpro it.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c
index 3c6fdbb1681..dd41ba5e25a 100644
--- a/src/process.c
+++ b/src/process.c
@@ -7933,7 +7933,7 @@ extern int frame_garbaged;
7933extern EMACS_TIME timer_check (); 7933extern EMACS_TIME timer_check ();
7934extern int timers_run; 7934extern int timers_run;
7935 7935
7936Lisp_Object QCtype; 7936Lisp_Object QCtype, QCname;
7937 7937
7938/* As described above, except assuming that there are no subprocesses: 7938/* As described above, except assuming that there are no subprocesses:
7939 7939
@@ -8273,6 +8273,8 @@ syms_of_process ()
8273{ 8273{
8274 QCtype = intern (":type"); 8274 QCtype = intern (":type");
8275 staticpro (&QCtype); 8275 staticpro (&QCtype);
8276 QCname = intern (":name");
8277 staticpro (&QCname);
8276 8278
8277 defsubr (&Sget_buffer_process); 8279 defsubr (&Sget_buffer_process);
8278 defsubr (&Sprocess_inherit_coding_system_flag); 8280 defsubr (&Sprocess_inherit_coding_system_flag);