Fix typo in last change of FRAME_INTERNAL_BORDER_WIDTH

* src/frame.h (FRAME_INTERNAL_BORDER_WIDTH): Fix typo in last
change.
This commit is contained in:
Martin Rudalics 2021-01-26 10:59:59 +01:00
parent ff7b1a133b
commit 3c314f3dd2

View file

@ -1455,7 +1455,7 @@ FRAME_INTERNAL_BORDER_WIDTH (struct frame *f)
: frame_dimension (f->internal_border_width))
: frame_dimension (f->internal_border_width);
#else
return frame_dimension (f->internal_border_width)
return frame_dimension (f->internal_border_width);
#endif
}