]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix recently-introduced typos in Windows port.
authorDmitry Antipov <dmantipov@yandex.ru>
Fri, 27 Jul 2012 07:36:33 +0000 (11:36 +0400)
committerDmitry Antipov <dmantipov@yandex.ru>
Fri, 27 Jul 2012 07:36:33 +0000 (11:36 +0400)
Reported by Martin Rudalics <rudalics@gmx.at>.
* w32.c (init_environment): Replace comma with semicolon.
* w32fns.c (syms_of_w32fns): Likewise.

src/ChangeLog
src/w32.c
src/w32fns.c

index cf90a35f230d862a4ef480c0b5c109b183757c6f..adcdfb7c0568fb7523dc5882d9f0c817711a8488 100644 (file)
@@ -1,3 +1,10 @@
+2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
+
+       Fix recently-introduced typos in Windows port.
+       Reported by Martin Rudalics <rudalics@gmx.at>.
+       * w32.c (init_environment): Replace comma with semicolon.
+       * w32fns.c (syms_of_w32fns): Likewise.
+
 2012-07-27  Paul Eggert  <eggert@cs.ucla.edu>
 
        Improve GDB symbol export (Bug#12036).
index 6f7cc9506ecdd80cabc8de9c392a766a03470a20..fe1007fceda5e8aabfdd4789596287c48f0abef3 100644 (file)
--- a/src/w32.c
+++ b/src/w32.c
@@ -1724,9 +1724,9 @@ init_environment (char ** argv)
                if (!strcmp (env_vars[i].name, "HOME") && !appdata)
                  Vdelayed_warnings_list 
                    = Fcons (listn (HEAP, 2,
-                                   intern ("initialization");
+                                   intern ("initialization"),
                                    build_string ("Setting HOME to C:\\ by default is deprecated")),
-                              Vdelayed_warnings_list);
+                            Vdelayed_warnings_list);
              }
 
            if (lpval)
index 0dd5379cf01b9e46b3652acfe3cbe725e7265b75..265af7378c4793bce02d5ce37dfec42859432eab 100644 (file)
@@ -6794,7 +6794,7 @@ syms_of_w32fns (void)
 
 
   Fput (Qundefined_color, Qerror_conditions,
-       listn (PURE, 2, Qundefined_color, Qerror);
+       listn (PURE, 2, Qundefined_color, Qerror));
   Fput (Qundefined_color, Qerror_message,
        build_pure_c_string ("Undefined color"));