aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/fns.c b/src/fns.c
index 09ce8c1b597..d3009775b81 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -49,11 +49,12 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
49#define NULL ((POINTER_TYPE *)0) 49#define NULL ((POINTER_TYPE *)0)
50#endif 50#endif
51 51
52Lisp_Object Qstring_lessp, Qprovide, Qrequire; 52Lisp_Object Qstring_lessp;
53Lisp_Object Qyes_or_no_p_history; 53static Lisp_Object Qprovide, Qrequire;
54static Lisp_Object Qyes_or_no_p_history;
54Lisp_Object Qcursor_in_echo_area; 55Lisp_Object Qcursor_in_echo_area;
55Lisp_Object Qwidget_type; 56static Lisp_Object Qwidget_type;
56Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper; 57static Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper;
57 58
58static int internal_equal (Lisp_Object , Lisp_Object, int, int); 59static int internal_equal (Lisp_Object , Lisp_Object, int, int);
59 60
@@ -2541,7 +2542,7 @@ advisable. */)
2541 return ret; 2542 return ret;
2542} 2543}
2543 2544
2544Lisp_Object Qsubfeatures; 2545static Lisp_Object Qsubfeatures;
2545 2546
2546DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, 2547DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0,
2547 doc: /* Return t if FEATURE is present in this Emacs. 2548 doc: /* Return t if FEATURE is present in this Emacs.
@@ -3350,13 +3351,14 @@ base64_decode_1 (const char *from, char *to, EMACS_INT length,
3350 3351
3351/* The list of all weak hash tables. Don't staticpro this one. */ 3352/* The list of all weak hash tables. Don't staticpro this one. */
3352 3353
3353struct Lisp_Hash_Table *weak_hash_tables; 3354static struct Lisp_Hash_Table *weak_hash_tables;
3354 3355
3355/* Various symbols. */ 3356/* Various symbols. */
3356 3357
3357Lisp_Object Qhash_table_p, Qeq, Qeql, Qequal, Qkey, Qvalue; 3358static Lisp_Object Qhash_table_p, Qkey, Qvalue;
3359Lisp_Object Qeq, Qeql, Qequal;
3358Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness; 3360Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness;
3359Lisp_Object Qhash_table_test, Qkey_or_value, Qkey_and_value; 3361static Lisp_Object Qhash_table_test, Qkey_or_value, Qkey_and_value;
3360 3362
3361/* Function prototypes. */ 3363/* Function prototypes. */
3362 3364