/[emacs]/emacs/src/emacs.c
ViewVC logotype

Diff of /emacs/src/emacs.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.328 by jasonr, Wed May 21 20:43:38 2003 UTC revision 1.328.4.1 by handa, Mon Sep 8 12:48:10 2003 UTC
# Line 1191  main (argc, argv Line 1191  main (argc, argv
1191        init_alloc_once ();        init_alloc_once ();
1192        init_obarray ();        init_obarray ();
1193        init_eval_once ();        init_eval_once ();
1194          init_character_once ();
1195        init_charset_once ();        init_charset_once ();
1196        init_coding_once ();        init_coding_once ();
1197        init_syntax_once ();      /* Create standard syntax table.  */        init_syntax_once ();      /* Create standard syntax table.  */
# Line 1302  main (argc, argv Line 1303  main (argc, argv
1303                Lisp_Object buffer;                Lisp_Object buffer;
1304    
1305                buffer = Fcdr (XCAR (tail));                buffer = Fcdr (XCAR (tail));
1306                /* Verify that all buffers are empty now, as they                /* Make a multibyte buffer unibyte.  */
1307                   ought to be.  */                if (BUF_Z_BYTE (XBUFFER (buffer)) > BUF_Z (XBUFFER (buffer)))
1308                if (BUF_Z (XBUFFER (buffer)) > BUF_BEG (XBUFFER (buffer)))                  {
1309                  abort ();                    struct buffer *current = current_buffer;
1310                /* It is safe to do this crudely in an empty buffer.  */  
1311                XBUFFER (buffer)->enable_multibyte_characters = Qnil;                    set_buffer_temp (XBUFFER (buffer));
1312                      Fset_buffer_multibyte (Qnil);
1313                      set_buffer_temp (current);
1314                    }
1315              }              }
1316          }          }
1317      }      }
# Line 1422  main (argc, argv Line 1426  main (argc, argv
1426    
1427    init_callproc ();     /* Must follow init_cmdargs but not init_sys_modes.  */    init_callproc ();     /* Must follow init_cmdargs but not init_sys_modes.  */
1428    init_lread ();    init_lread ();
1429      init_charset ();
1430    
1431    /* Intern the names of all standard functions and variables;    /* Intern the names of all standard functions and variables;
1432       define standard keys.  */       define standard keys.  */
# Line 1436  main (argc, argv Line 1441  main (argc, argv
1441        syms_of_data ();        syms_of_data ();
1442  #endif  #endif
1443        syms_of_alloc ();        syms_of_alloc ();
1444          syms_of_chartab ();
1445        syms_of_lread ();        syms_of_lread ();
1446        syms_of_print ();        syms_of_print ();
1447        syms_of_eval ();        syms_of_eval ();
# Line 1454  main (argc, argv Line 1460  main (argc, argv
1460        /* Called before init_window_once for Mac OS Classic.  */        /* Called before init_window_once for Mac OS Classic.  */
1461        syms_of_ccl ();        syms_of_ccl ();
1462  #endif  #endif
1463          syms_of_character ();
1464        syms_of_charset ();        syms_of_charset ();
1465        syms_of_cmds ();        syms_of_cmds ();
1466  #ifndef NO_DIR_LIBRARY  #ifndef NO_DIR_LIBRARY

Legend:
Removed from v.1.328  
changed lines
  Added in v.1.328.4.1

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26