aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGeoff Voelker1998-12-02 23:00:29 +0000
committerGeoff Voelker1998-12-02 23:00:29 +0000
commit83c75055bc8fc08b34422b2976d442f7f8127cc8 (patch)
tree676752034f0c93945964f129986f4ff9c8ffb03a /src
parentdba46b7c5dbb9b8520f9d2afd9ff247c36b34235 (diff)
downloademacs-83c75055bc8fc08b34422b2976d442f7f8127cc8.tar.gz
emacs-83c75055bc8fc08b34422b2976d442f7f8127cc8.zip
(w32_last_error): Fix cut+paste error.
Diffstat (limited to 'src')
-rw-r--r--src/w32fns.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index c11c3d5c841..b501d19db2d 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -6899,12 +6899,6 @@ displayed according to the current fontset.");
6899#undef abort 6899#undef abort
6900 6900
6901void 6901void
6902/* For convenience when debugging. */
6903int
6904w32_last_error()
6905{
6906 return GetLastError ();
6907}
6908w32_abort() 6902w32_abort()
6909{ 6903{
6910 int button; 6904 int button;
@@ -6928,3 +6922,9 @@ w32_abort()
6928 } 6922 }
6929} 6923}
6930 6924
6925/* For convenience when debugging. */
6926int
6927w32_last_error()
6928{
6929 return GetLastError ();
6930}