diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 18 |
1 files changed, 10 insertions, 8 deletions
| @@ -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 | ||
| 52 | Lisp_Object Qstring_lessp, Qprovide, Qrequire; | 52 | Lisp_Object Qstring_lessp; |
| 53 | Lisp_Object Qyes_or_no_p_history; | 53 | static Lisp_Object Qprovide, Qrequire; |
| 54 | static Lisp_Object Qyes_or_no_p_history; | ||
| 54 | Lisp_Object Qcursor_in_echo_area; | 55 | Lisp_Object Qcursor_in_echo_area; |
| 55 | Lisp_Object Qwidget_type; | 56 | static Lisp_Object Qwidget_type; |
| 56 | Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper; | 57 | static Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper; |
| 57 | 58 | ||
| 58 | static int internal_equal (Lisp_Object , Lisp_Object, int, int); | 59 | static 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 | ||
| 2544 | Lisp_Object Qsubfeatures; | 2545 | static Lisp_Object Qsubfeatures; |
| 2545 | 2546 | ||
| 2546 | DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, | 2547 | DEFUN ("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 | ||
| 3353 | struct Lisp_Hash_Table *weak_hash_tables; | 3354 | static struct Lisp_Hash_Table *weak_hash_tables; |
| 3354 | 3355 | ||
| 3355 | /* Various symbols. */ | 3356 | /* Various symbols. */ |
| 3356 | 3357 | ||
| 3357 | Lisp_Object Qhash_table_p, Qeq, Qeql, Qequal, Qkey, Qvalue; | 3358 | static Lisp_Object Qhash_table_p, Qkey, Qvalue; |
| 3359 | Lisp_Object Qeq, Qeql, Qequal; | ||
| 3358 | Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness; | 3360 | Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness; |
| 3359 | Lisp_Object Qhash_table_test, Qkey_or_value, Qkey_and_value; | 3361 | static Lisp_Object Qhash_table_test, Qkey_or_value, Qkey_and_value; |
| 3360 | 3362 | ||
| 3361 | /* Function prototypes. */ | 3363 | /* Function prototypes. */ |
| 3362 | 3364 | ||