comparison src/emacs.c @ 100:4be1180a9e89 r20-1b2

Import from CVS: tag r20-1b2
author cvs
date Mon, 13 Aug 2007 09:15:11 +0200
parents 0d2f883870bc
children fe104dbd9147
comparison
equal deleted inserted replaced
99:2d83cbd90d8d 100:4be1180a9e89
597 fatal ("%s: %s", term, strerror (errno)); 597 fatal ("%s: %s", term, strerror (errno));
598 dup (0); 598 dup (0);
599 if (! isatty (0)) 599 if (! isatty (0))
600 fatal ("%s: not a tty", term); 600 fatal ("%s: not a tty", term);
601 601
602 #if 0
602 stderr_out ("Using %s", ttyname (0)); 603 stderr_out ("Using %s", ttyname (0));
604 #endif
605 stderr_out ("Using %s", term);
603 inhibit_window_system = 1; /* -t => -nw */ 606 inhibit_window_system = 1; /* -t => -nw */
604 } 607 }
605 } 608 }
606 609
607 /* Handle -nw switch */ 610 /* Handle -nw switch */
821 syms_of_objects (); 824 syms_of_objects ();
822 syms_of_print (); 825 syms_of_print ();
823 #if !defined (NO_SUBPROCESSES) 826 #if !defined (NO_SUBPROCESSES)
824 syms_of_process (); 827 syms_of_process ();
825 #endif 828 #endif
829 #ifndef WINDOWSNT
826 syms_of_profile (); 830 syms_of_profile ();
831 #endif
827 #if defined (HAVE_MMAP) && defined (REL_ALLOC) 832 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
828 syms_of_ralloc (); 833 syms_of_ralloc ();
829 #endif /* HAVE_MMAP && REL_ALLOC */ 834 #endif /* HAVE_MMAP && REL_ALLOC */
830 syms_of_rangetab (); 835 syms_of_rangetab ();
831 syms_of_redisplay (); 836 syms_of_redisplay ();
1144 vars_of_objects (); 1149 vars_of_objects ();
1145 vars_of_print (); 1150 vars_of_print ();
1146 #ifndef NO_SUBPROCESSES 1151 #ifndef NO_SUBPROCESSES
1147 vars_of_process (); 1152 vars_of_process ();
1148 #endif 1153 #endif
1154 #ifndef WINDOWSNT
1149 vars_of_profile (); 1155 vars_of_profile ();
1156 #endif
1150 #if defined (HAVE_MMAP) && defined (REL_ALLOC) 1157 #if defined (HAVE_MMAP) && defined (REL_ALLOC)
1151 vars_of_ralloc (); 1158 vars_of_ralloc ();
1152 #endif /* HAVE_MMAP && REL_ALLOC */ 1159 #endif /* HAVE_MMAP && REL_ALLOC */
1153 vars_of_redisplay (); 1160 vars_of_redisplay ();
1154 #ifdef HAVE_SCROLLBARS 1161 #ifdef HAVE_SCROLLBARS