aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
authorPaul Eggert2011-03-15 16:06:01 -0700
committerPaul Eggert2011-03-15 16:06:01 -0700
commit112396d6542186a88963e08828cd66f6d7fe9543 (patch)
treeae61103c2e8eee6e709252e7eadab5d606a8eec3 /src/data.c
parent946f9a5b0a6df7470868acb8b39ad10b0866f73e (diff)
downloademacs-112396d6542186a88963e08828cd66f6d7fe9543.tar.gz
emacs-112396d6542186a88963e08828cd66f6d7fe9543.zip
* data.c (default_value, arithcompare, arith_driver, arith_error): Now static.
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/data.c b/src/data.c
index 288525cf5f5..81c16fff489 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1272,7 +1272,7 @@ set_internal (register Lisp_Object symbol, register Lisp_Object newval, register
1272/* Return the default value of SYMBOL, but don't check for voidness. 1272/* Return the default value of SYMBOL, but don't check for voidness.
1273 Return Qunbound if it is void. */ 1273 Return Qunbound if it is void. */
1274 1274
1275Lisp_Object 1275static Lisp_Object
1276default_value (Lisp_Object symbol) 1276default_value (Lisp_Object symbol)
1277{ 1277{
1278 struct Lisp_Symbol *sym; 1278 struct Lisp_Symbol *sym;
@@ -2219,7 +2219,7 @@ bool-vector. IDX starts at 0. */)
2219 2219
2220enum comparison { equal, notequal, less, grtr, less_or_equal, grtr_or_equal }; 2220enum comparison { equal, notequal, less, grtr, less_or_equal, grtr_or_equal };
2221 2221
2222Lisp_Object 2222static Lisp_Object
2223arithcompare (Lisp_Object num1, Lisp_Object num2, enum comparison comparison) 2223arithcompare (Lisp_Object num1, Lisp_Object num2, enum comparison comparison)
2224{ 2224{
2225 double f1 = 0, f2 = 0; 2225 double f1 = 0, f2 = 0;
@@ -2487,7 +2487,7 @@ enum arithop
2487 2487
2488static Lisp_Object float_arith_driver (double, int, enum arithop, 2488static Lisp_Object float_arith_driver (double, int, enum arithop,
2489 int, Lisp_Object *); 2489 int, Lisp_Object *);
2490Lisp_Object 2490static Lisp_Object
2491arith_driver (enum arithop code, int nargs, register Lisp_Object *args) 2491arith_driver (enum arithop code, int nargs, register Lisp_Object *args)
2492{ 2492{
2493 register Lisp_Object val; 2493 register Lisp_Object val;
@@ -3311,7 +3311,7 @@ syms_of_data (void)
3311 XSYMBOL (intern_c_string ("most-negative-fixnum"))->constant = 1; 3311 XSYMBOL (intern_c_string ("most-negative-fixnum"))->constant = 1;
3312} 3312}
3313 3313
3314SIGTYPE 3314static SIGTYPE
3315arith_error (int signo) 3315arith_error (int signo)
3316{ 3316{
3317 sigsetmask (SIGEMPTYMASK); 3317 sigsetmask (SIGEMPTYMASK);