comparison src/emacs.c @ 27874:12f647a4d524

(main): Remove code snipped commented out with `//'.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 25 Feb 2000 20:33:23 +0000
parents b980acbcfbfd
children acba8d7b819b
comparison
equal deleted inserted replaced
27873:b978c2a7b4a7 27874:12f647a4d524
1467 extern char etext; 1467 extern char etext;
1468 extern void safe_bcopy (); 1468 extern void safe_bcopy ();
1469 extern void dump_opcode_frequencies (); 1469 extern void dump_opcode_frequencies ();
1470 1470
1471 atexit (_mcleanup); 1471 atexit (_mcleanup);
1472 // atexit (dump_opcode_frequencies);
1473 /* This uses safe_bcopy because that function comes first in the 1472 /* This uses safe_bcopy because that function comes first in the
1474 Emacs executable. It might be better to use something that 1473 Emacs executable. It might be better to use something that
1475 gives the start of the text segment, but start_of_text is not 1474 gives the start of the text segment, but start_of_text is not
1476 defined on all systems now. */ 1475 defined on all systems now. */
1477 monstartup (safe_bcopy, &etext); 1476 monstartup (safe_bcopy, &etext);