aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index d7b256c8454..cbf928e786b 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -697,11 +697,11 @@ sys_subshell ()
697 close_process_descs (); /* Close Emacs's pipes/ptys */ 697 close_process_descs (); /* Close Emacs's pipes/ptys */
698#endif 698#endif
699 699
700#ifdef PRIO_PROCESS 700#ifdef SET_EMACS_PRIORITY
701 { 701 {
702 extern int emacs_priority; 702 extern int emacs_priority;
703 703
704 if (emacs_priority) 704 if (emacs_priority < 0)
705 nice (-emacs_priority); 705 nice (-emacs_priority);
706 } 706 }
707#endif 707#endif