From: İ. Göktuğ Kayaalp Date: Sun, 4 Apr 2021 02:14:29 +0000 (+0200) Subject: Fix build error in frame.h on non-NS X-Git-Tag: emacs-28.0.90~3027 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=55c768f3ea7da76328641c2db9aa922564b0a1f3;p=emacs.git Fix build error in frame.h on non-NS * src/frame.h (FRAME_SCALE_FACTOR): Fix syntax of macro in previous change. --- diff --git a/src/frame.h b/src/frame.h index 9963112036f..0fd95e4dd3c 100644 --- a/src/frame.h +++ b/src/frame.h @@ -911,7 +911,7 @@ default_pixels_per_inch_y (void) #if defined HAVE_NS # define FRAME_SCALE_FACTOR(f) (FRAME_NS_P (f) ? ns_frame_scale_factor (f) : 1) #else -# define FRAME_SCALE_FACTOR(f) 1; +# define FRAME_SCALE_FACTOR(f) 1 #endif /* Pixel width of frame F. */