summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2022-05-17 10:30:05 +0000
committerAlan Mackenzie <acm@muc.de>2022-05-17 10:31:15 +0000
commit71249b774aa04b8cd46e4201c17470e59cd32dff (patch)
tree4433492e3b23b6b789848f7f97f079f019ab46f5 /src
parent38dfe9d2f7aea4ecfe06ec54fef6f5b5fe1f72e4 (diff)
Correct indentation of opening brace in xdisp.c, which isn't at start of defun
* xdisp.c (calc_pixel_width_or_height): indent the opening brace of a substatement correctly. It's previous position, in column 0, caused indentation errors in C Mode.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 5ff54b2884f..e3e4ca9bb38 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -28441,7 +28441,7 @@ calc_pixel_width_or_height (double *res, struct it *it, Lisp_Object prop,
/* '(NUM)': absolute number of pixels. */
if (NUMBERP (car))
-{
+ {
double fact;
int offset =
width_p && align_to && *align_to < 0 ? it->lnum_pixel_width : 0;