aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 17698dfab9f..695e866acc2 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -47,6 +47,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
47 47
48#include "lisp.h" 48#include "lisp.h"
49#include "commands.h" 49#include "commands.h"
50#include "intervals.h"
50 51
51#include "systty.h" 52#include "systty.h"
52 53
@@ -516,6 +517,9 @@ main (argc, argv, envp)
516 syms_of_frame (); 517 syms_of_frame ();
517 syms_of_syntax (); 518 syms_of_syntax ();
518 syms_of_undo (); 519 syms_of_undo ();
520
521 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
522 syms_of_textprop ();
519#ifdef VMS 523#ifdef VMS
520 syms_of_vmsproc (); 524 syms_of_vmsproc ();
521#endif /* VMS */ 525#endif /* VMS */