emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109225: Fix recently-introduced typo


From: Dmitry Antipov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109225: Fix recently-introduced typos in Windows port.
Date: Fri, 27 Jul 2012 11:36:33 +0400
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109225
committer: Dmitry Antipov <address@hidden>
branch nick: trunk
timestamp: Fri 2012-07-27 11:36:33 +0400
message:
  Fix recently-introduced typos in Windows port.
  Reported by Martin Rudalics <address@hidden>.
  * w32.c (init_environment): Replace comma with semicolon.
  * w32fns.c (syms_of_w32fns): Likewise.
modified:
  src/ChangeLog
  src/w32.c
  src/w32fns.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-07-27 06:18:36 +0000
+++ b/src/ChangeLog     2012-07-27 07:36:33 +0000
@@ -1,3 +1,10 @@
+2012-07-27  Dmitry Antipov  <address@hidden>
+
+       Fix recently-introduced typos in Windows port.
+       Reported by Martin Rudalics <address@hidden>.
+       * w32.c (init_environment): Replace comma with semicolon.
+       * w32fns.c (syms_of_w32fns): Likewise.
+
 2012-07-27  Paul Eggert  <address@hidden>
 
        Improve GDB symbol export (Bug#12036).

=== modified file 'src/w32.c'
--- a/src/w32.c 2012-07-27 06:04:35 +0000
+++ b/src/w32.c 2012-07-27 07:36:33 +0000
@@ -1724,9 +1724,9 @@
                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)

=== modified file 'src/w32fns.c'
--- a/src/w32fns.c      2012-07-27 06:04:35 +0000
+++ b/src/w32fns.c      2012-07-27 07:36:33 +0000
@@ -6794,7 +6794,7 @@
 
 
   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"));
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]