]> git.eshelyaron.com Git - emacs.git/commitdiff
(main) [VMS]: Fix var ref.
authorThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 6 May 2004 19:56:35 +0000 (19:56 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 6 May 2004 19:56:35 +0000 (19:56 +0000)
src/ChangeLog
src/emacs.c

index 5358ccbb8b0951a7f28dd308031f92cd0ff09cce..411622c3504d1347df1d360cea0f797f5fb6c954 100644 (file)
@@ -1,3 +1,7 @@
+2004-05-06  Thien-Thi Nguyen  <ttn@gnu.org>
+
+       * emacs.c (main) [VMS]: Fix var ref.
+
 2004-05-03  Thien-Thi Nguyen  <ttn@gnu.org>
 
        * coding.c (detect_coding_mask): Fix call of detect_coding_iso2022.
index 274c151d180d8f19a8dd9ffe23c67492206d35ce..e1816b59dc8994a364db350135930a1ea873a62f 100644 (file)
@@ -112,7 +112,7 @@ Lisp_Object Vkill_emacs_hook;
 Lisp_Object Vsignal_USR1_hook;
 #ifdef SIGUSR2
 Lisp_Object Vsignal_USR2_hook;
-#endif 
+#endif
 #endif
 
 /* Search path separator.  */
@@ -793,7 +793,7 @@ main (argc, argv, envp)
   /* If -map specified, map the data file in */
   {
     char *file;
-    if (argmatch (argv, argc, "-map", "--map-data", 3, &mapin_file, &skip_args))
+    if (argmatch (argv, argc, "-map", "--map-data", 3, &file, &skip_args))
       mapin_data (file);
   }
 
@@ -1100,7 +1100,7 @@ main (argc, argv, envp)
       init_buffer_once ();     /* Create buffer table and some buffers */
       init_minibuf_once ();    /* Create list of minibuffers */
                                /* Must precede init_window_once */
-      
+
       /* Call syms_of_xfaces before init_window_once because that
         function creates Vterminal_frame.  Termcap frames now use
         faces, and the face implementation uses some symbols as
@@ -1128,7 +1128,7 @@ main (argc, argv, envp)
       syms_of_data ();
       syms_of_search ();
       syms_of_frame ();
-      
+
       x_term_init ();
       init_keyboard ();
 #endif
@@ -1515,7 +1515,7 @@ main (argc, argv, envp)
 #ifdef PROFILING
   if (initialized)
     {
-      extern void _mcleanup ();       
+      extern void _mcleanup ();
       extern char etext;
       extern void safe_bcopy ();
       extern void dump_opcode_frequencies ();
@@ -1758,7 +1758,7 @@ sort_args (argc, argv)
          if (options[from] > 0)
            from += options[from];
        }
-           
+
       if (best < 0)
        abort ();