diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1998-12-02 23:00:29 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1998-12-02 23:00:29 +0000 |
commit | 83c75055bc8fc08b34422b2976d442f7f8127cc8 (patch) | |
tree | 676752034f0c93945964f129986f4ff9c8ffb03a /src/w32fns.c | |
parent | dba46b7c5dbb9b8520f9d2afd9ff247c36b34235 (diff) | |
download | emacs-83c75055bc8fc08b34422b2976d442f7f8127cc8.tar.gz |
(w32_last_error): Fix cut+paste error.
Diffstat (limited to 'src/w32fns.c')
-rw-r--r-- | src/w32fns.c | 12 |
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."); #undef abort void -/* For convenience when debugging. */ -int -w32_last_error() -{ - return GetLastError (); -} w32_abort() { int button; @@ -6928,3 +6922,9 @@ w32_abort() } } +/* For convenience when debugging. */ +int +w32_last_error() +{ + return GetLastError (); +} |