aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoseph Arceneaux1992-10-01 00:56:11 +0000
committerJoseph Arceneaux1992-10-01 00:56:11 +0000
commitbef79ee47f039aa0759619a175f23ac58e4cd3ec (patch)
tree879d6b551c1c5b6461c62645a8bf220310b3db75 /src
parentcd7d971d0692c72edc761bde8b9abb5d8dc15bce (diff)
downloademacs-bef79ee47f039aa0759619a175f23ac58e4cd3ec.tar.gz
emacs-bef79ee47f039aa0759619a175f23ac58e4cd3ec.zip
*** empty log message ***
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 */