X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/72aa8b2ebc03fa1000ddbbd4cf5d68013eaf0e0e..fe6aa7a1f05e241a438ca3fa85969b7381d89a0e:/src/syntax.c diff --git a/src/syntax.c b/src/syntax.c index f2451332b1..6ce3551687 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -3569,6 +3569,8 @@ init_syntax_once (void) void syms_of_syntax (void) { +#include "syntax.x" + DEFSYM (Qsyntax_table_p, "syntax-table-p"); staticpro (&Vsyntax_code_object); @@ -3627,28 +3629,4 @@ character of that word. In both cases, LIMIT bounds the search. */); Vfind_word_boundary_function_table = Fmake_char_table (Qnil, Qnil); - - defsubr (&Ssyntax_table_p); - defsubr (&Ssyntax_table); - defsubr (&Sstandard_syntax_table); - defsubr (&Scopy_syntax_table); - defsubr (&Sset_syntax_table); - defsubr (&Schar_syntax); - defsubr (&Smatching_paren); - defsubr (&Sstring_to_syntax); - defsubr (&Smodify_syntax_entry); - defsubr (&Sinternal_describe_syntax_value); - - defsubr (&Sforward_word); - - defsubr (&Sskip_chars_forward); - defsubr (&Sskip_chars_backward); - defsubr (&Sskip_syntax_forward); - defsubr (&Sskip_syntax_backward); - - defsubr (&Sforward_comment); - defsubr (&Sscan_lists); - defsubr (&Sscan_sexps); - defsubr (&Sbackward_prefix_chars); - defsubr (&Sparse_partial_sexp); }