summaryrefslogtreecommitdiff
path: root/src/emacs.c
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2010-11-20 21:39:01 -0800
committerDan Nicolaescu <dann@ics.uci.edu>2010-11-20 21:39:01 -0800
commitbee3419feac23216cff6ffc529312da96828b2e1 (patch)
tree2c84faa456fe120e1142ff24972952aaec38046b /src/emacs.c
parentb7982059664f947cf99a296005adbb596837120a (diff)
downloademacs-bee3419feac23216cff6ffc529312da96828b2e1.tar.gz
Remove emacs-priority.
* src/sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY. * src/emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 97ffd1a74c7..0d3b37ae27c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -195,11 +195,6 @@ Lisp_Object Vdynamic_library_alist;
but instead should use the virtual terminal under which it was started. */
int inhibit_window_system;
-/* If nonzero, set Emacs to run at this priority. This is also used
- in child_setup and sys_suspend to make sure subshells run at normal
- priority; those functions have their own extern declaration. */
-EMACS_INT emacs_priority;
-
/* If non-zero, a filter or a sentinel is running. Tested to save the match
data on the first attempt to change it inside asynchronous code. */
int running_asynch_code;
@@ -2439,15 +2434,6 @@ Before Emacs 24.1, the hook was not run in batch mode, i.e., if
`noninteractive' was non-nil. */);
Vkill_emacs_hook = Qnil;
- DEFVAR_INT ("emacs-priority", &emacs_priority,
- doc: /* Priority for Emacs to run at.
-This value is effective only if set before Emacs is dumped,
-and only if the Emacs executable is installed with setuid to permit
-it to change priority. (Emacs sets its uid back to the real uid.)
-Currently, you need to define SET_EMACS_PRIORITY in `config.h'
-before you compile Emacs, to enable the code for this feature. */);
- emacs_priority = 0;
-
DEFVAR_LISP ("path-separator", &Vpath_separator,
doc: /* String containing the character that separates directories in
search paths, such as PATH and other similar environment variables. */);