summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-11-19 11:49:27 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2015-11-19 11:50:16 -0800
commit62d787ed124726fd1f73dcfb7227d83bc5940fcc (patch)
treef2fbfa26961709470101b1898cef1763100f0a8d /src/lisp.h
parentc8a972b0c3082edfcca4a85562224499f75bfe9b (diff)
downloademacs-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/lisp.h')
-rw-r--r--src/lisp.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index ce5a6d2aea8..f953ceb582f 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -3837,7 +3837,6 @@ intern_c_string (const char *str)
}
/* Defined in eval.c. */
-extern EMACS_INT lisp_eval_depth;
extern Lisp_Object Vautoload_queue;
extern Lisp_Object Vrun_hooks;
extern Lisp_Object Vsignaling_function;