diff options
| author | Ken Brown | 2016-06-22 09:31:31 -0400 |
|---|---|---|
| committer | Ken Brown | 2016-06-22 09:31:31 -0400 |
| commit | 81fc9a7c28f5f120fc0e4a121902475bd5c2bfeb (patch) | |
| tree | 8d290a74cc34d52d045eb0116a99d43db903fbec /src | |
| parent | 1c0199050bfa594287f3975aca56fc2a57ba0f66 (diff) | |
| download | emacs-81fc9a7c28f5f120fc0e4a121902475bd5c2bfeb.tar.gz emacs-81fc9a7c28f5f120fc0e4a121902475bd5c2bfeb.zip | |
Fix last change to FRAME_INTERNAL_BORDER_WIDTH
* src/w32fns.c (x_set_internal_border_width): Don’t use
FRAME_INTERNAL_BORDER_WIDTH(), which is now a function call, as an
lvalue.
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32fns.c b/src/w32fns.c index bc9c74748d7..02bd4d55942 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -1658,7 +1658,7 @@ x_set_internal_border_width (struct frame *f, Lisp_Object arg, Lisp_Object oldva | |||
| 1658 | 1658 | ||
| 1659 | if (border != FRAME_INTERNAL_BORDER_WIDTH (f)) | 1659 | if (border != FRAME_INTERNAL_BORDER_WIDTH (f)) |
| 1660 | { | 1660 | { |
| 1661 | FRAME_INTERNAL_BORDER_WIDTH (f) = border; | 1661 | f->internal_border_width = border; |
| 1662 | 1662 | ||
| 1663 | if (FRAME_X_WINDOW (f) != 0) | 1663 | if (FRAME_X_WINDOW (f) != 0) |
| 1664 | { | 1664 | { |