diff options
Diffstat (limited to 'src/fns.c')
| -rw-r--r-- | src/fns.c | 22 |
1 files changed, 0 insertions, 22 deletions
| @@ -41,16 +41,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 41 | #include "xterm.h" | 41 | #include "xterm.h" |
| 42 | #endif | 42 | #endif |
| 43 | 43 | ||
| 44 | Lisp_Object Qstring_lessp; | ||
| 45 | static Lisp_Object Qstring_collate_lessp, Qstring_collate_equalp; | ||
| 46 | static Lisp_Object Qprovide, Qrequire; | ||
| 47 | static Lisp_Object Qyes_or_no_p_history; | ||
| 48 | Lisp_Object Qcursor_in_echo_area; | ||
| 49 | static Lisp_Object Qwidget_type; | ||
| 50 | static Lisp_Object Qcodeset, Qdays, Qmonths, Qpaper; | ||
| 51 | |||
| 52 | static Lisp_Object Qmd5, Qsha1, Qsha224, Qsha256, Qsha384, Qsha512; | ||
| 53 | |||
| 54 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, | 44 | static void sort_vector_copy (Lisp_Object, ptrdiff_t, |
| 55 | Lisp_Object [restrict], Lisp_Object [restrict]); | 45 | Lisp_Object [restrict], Lisp_Object [restrict]); |
| 56 | static bool internal_equal (Lisp_Object, Lisp_Object, int, bool, Lisp_Object); | 46 | static bool internal_equal (Lisp_Object, Lisp_Object, int, bool, Lisp_Object); |
| @@ -2788,8 +2778,6 @@ advisable. */) | |||
| 2788 | return ret; | 2778 | return ret; |
| 2789 | } | 2779 | } |
| 2790 | 2780 | ||
| 2791 | static Lisp_Object Qsubfeatures; | ||
| 2792 | |||
| 2793 | DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, | 2781 | DEFUN ("featurep", Ffeaturep, Sfeaturep, 1, 2, 0, |
| 2794 | doc: /* Return t if FEATURE is present in this Emacs. | 2782 | doc: /* Return t if FEATURE is present in this Emacs. |
| 2795 | 2783 | ||
| @@ -2808,8 +2796,6 @@ SUBFEATURE can be used to check a specific subfeature of FEATURE. */) | |||
| 2808 | return (NILP (tem)) ? Qnil : Qt; | 2796 | return (NILP (tem)) ? Qnil : Qt; |
| 2809 | } | 2797 | } |
| 2810 | 2798 | ||
| 2811 | static Lisp_Object Qfuncall; | ||
| 2812 | |||
| 2813 | DEFUN ("provide", Fprovide, Sprovide, 1, 2, 0, | 2799 | DEFUN ("provide", Fprovide, Sprovide, 1, 2, 0, |
| 2814 | doc: /* Announce that FEATURE is a feature of the current Emacs. | 2800 | doc: /* Announce that FEATURE is a feature of the current Emacs. |
| 2815 | The optional argument SUBFEATURES should be a list of symbols listing | 2801 | The optional argument SUBFEATURES should be a list of symbols listing |
| @@ -3596,14 +3582,6 @@ base64_decode_1 (const char *from, char *to, ptrdiff_t length, | |||
| 3596 | 3582 | ||
| 3597 | static struct Lisp_Hash_Table *weak_hash_tables; | 3583 | static struct Lisp_Hash_Table *weak_hash_tables; |
| 3598 | 3584 | ||
| 3599 | /* Various symbols. */ | ||
| 3600 | |||
| 3601 | static Lisp_Object Qhash_table_p; | ||
| 3602 | static Lisp_Object Qkey, Qvalue, Qeql; | ||
| 3603 | Lisp_Object Qeq, Qequal; | ||
| 3604 | Lisp_Object QCtest, QCsize, QCrehash_size, QCrehash_threshold, QCweakness; | ||
| 3605 | static Lisp_Object Qhash_table_test, Qkey_or_value, Qkey_and_value; | ||
| 3606 | |||
| 3607 | 3585 | ||
| 3608 | /*********************************************************************** | 3586 | /*********************************************************************** |
| 3609 | Utilities | 3587 | Utilities |