diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-19 11:49:27 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2015-11-19 11:50:16 -0800 |
commit | 62d787ed124726fd1f73dcfb7227d83bc5940fcc (patch) | |
tree | f2fbfa26961709470101b1898cef1763100f0a8d /src/eval.c | |
parent | c8a972b0c3082edfcca4a85562224499f75bfe9b (diff) | |
download | emacs-62d787ed124726fd1f73dcfb7227d83bc5940fcc.tar.gz |
Fix minor module problems found by static checking
* src/dynlib.c (dynlib_close): #ifdef out for now, as it’s not used.
* src/eval.c, src/lisp.h (lisp_eval_depth): Now static.
* src/module.c (Fmodule_load): Fix pointer signedness bug.
(Fmodule_call): Tell GCC that the default case is unreachable.
Diffstat (limited to 'src/eval.c')
-rw-r--r-- | src/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eval.c b/src/eval.c index 396ca84a71d..9c171473b43 100644 --- a/src/eval.c +++ b/src/eval.c @@ -61,7 +61,7 @@ union specbinding *specpdl_ptr; /* Depth in Lisp evaluations and function calls. */ -EMACS_INT lisp_eval_depth; +static EMACS_INT lisp_eval_depth; /* The value of num_nonmacro_input_events as of the last time we started to enter the debugger. If we decide to enter the debugger |