From: Ahmed Khanzada Date: Sat, 18 Apr 2020 19:15:17 +0000 (-0700) Subject: Fix misnamed variable breaking GNUstep X-Git-Tag: emacs-28.0.90~7545 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d890e5b73a06decd4d60eea82a5a7a2554013cbc;p=emacs.git Fix misnamed variable breaking GNUstep * src/nsterm.m (ns_set_offset): Use correct variable. --- diff --git a/src/nsterm.m b/src/nsterm.m index 9cd1c9d8602..5eb44639f56 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -1875,7 +1875,7 @@ ns_set_offset (struct frame *f, int xoff, int yoff, int change_grav) FIXME: Surely there's a better way than just hardcoding 100 in here? */ - boundsRect.origin.x = 100; + topLeft.x = 100; #endif }