diff options
| author | Dmitry Antipov | 2012-07-27 11:36:33 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2012-07-27 11:36:33 +0400 |
| commit | 073c88c22c0064b60ec57b6dadef9d3a4736e6b5 (patch) | |
| tree | a92b9f0f0a0baa579c16a0d0bb0b682c2b752269 /src | |
| parent | 4706125e2f5181d21c0e3b23b4aa5c96b21c3b67 (diff) | |
| download | emacs-073c88c22c0064b60ec57b6dadef9d3a4736e6b5.tar.gz emacs-073c88c22c0064b60ec57b6dadef9d3a4736e6b5.zip | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/w32.c | 4 | ||||
| -rw-r--r-- | src/w32fns.c | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cf90a35f230..adcdfb7c056 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru> | ||
| 2 | |||
| 3 | Fix recently-introduced typos in Windows port. | ||
| 4 | Reported by Martin Rudalics <rudalics@gmx.at>. | ||
| 5 | * w32.c (init_environment): Replace comma with semicolon. | ||
| 6 | * w32fns.c (syms_of_w32fns): Likewise. | ||
| 7 | |||
| 1 | 2012-07-27 Paul Eggert <eggert@cs.ucla.edu> | 8 | 2012-07-27 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 9 | ||
| 3 | Improve GDB symbol export (Bug#12036). | 10 | Improve GDB symbol export (Bug#12036). |
| @@ -1724,9 +1724,9 @@ init_environment (char ** argv) | |||
| 1724 | if (!strcmp (env_vars[i].name, "HOME") && !appdata) | 1724 | if (!strcmp (env_vars[i].name, "HOME") && !appdata) |
| 1725 | Vdelayed_warnings_list | 1725 | Vdelayed_warnings_list |
| 1726 | = Fcons (listn (HEAP, 2, | 1726 | = Fcons (listn (HEAP, 2, |
| 1727 | intern ("initialization"); | 1727 | intern ("initialization"), |
| 1728 | build_string ("Setting HOME to C:\\ by default is deprecated")), | 1728 | build_string ("Setting HOME to C:\\ by default is deprecated")), |
| 1729 | Vdelayed_warnings_list); | 1729 | Vdelayed_warnings_list); |
| 1730 | } | 1730 | } |
| 1731 | 1731 | ||
| 1732 | if (lpval) | 1732 | if (lpval) |
diff --git a/src/w32fns.c b/src/w32fns.c index 0dd5379cf01..265af7378c4 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -6794,7 +6794,7 @@ syms_of_w32fns (void) | |||
| 6794 | 6794 | ||
| 6795 | 6795 | ||
| 6796 | Fput (Qundefined_color, Qerror_conditions, | 6796 | Fput (Qundefined_color, Qerror_conditions, |
| 6797 | listn (PURE, 2, Qundefined_color, Qerror); | 6797 | listn (PURE, 2, Qundefined_color, Qerror)); |
| 6798 | Fput (Qundefined_color, Qerror_message, | 6798 | Fput (Qundefined_color, Qerror_message, |
| 6799 | build_pure_c_string ("Undefined color")); | 6799 | build_pure_c_string ("Undefined color")); |
| 6800 | 6800 | ||