From: Geoff Voelker Date: Wed, 2 Dec 1998 23:00:29 +0000 (+0000) Subject: (w32_last_error): Fix cut+paste error. X-Git-Tag: emacs-20.4~1148 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=83c75055bc8fc08b34422b2976d442f7f8127cc8;p=emacs.git (w32_last_error): Fix cut+paste error. --- 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 (); +}