diff options
| author | Juanma Barranquero | 2011-09-09 03:06:52 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2011-09-09 03:06:52 +0200 |
| commit | 5e617bc2b62189768814fafd1a875e89a094d3ef (patch) | |
| tree | d96d22e012035d044557abf4de0b8e30b03d61b7 /src/font.c | |
| parent | 9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff) | |
| download | emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip | |
Whitespace changes.
Diffstat (limited to 'src/font.c')
| -rw-r--r-- | src/font.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/font.c b/src/font.c index 34cacb37ce4..1a4742ba959 100644 --- a/src/font.c +++ b/src/font.c | |||
| @@ -1334,7 +1334,7 @@ font_parse_fcname (char *name, Lisp_Object font) | |||
| 1334 | { | 1334 | { |
| 1335 | int decimal = 0, size_found = 1; | 1335 | int decimal = 0, size_found = 1; |
| 1336 | for (q = p + 1; *q && *q != ':'; q++) | 1336 | for (q = p + 1; *q && *q != ':'; q++) |
| 1337 | if (! isdigit(*q)) | 1337 | if (! isdigit (*q)) |
| 1338 | { | 1338 | { |
| 1339 | if (*q != '.' || decimal) | 1339 | if (*q != '.' || decimal) |
| 1340 | { | 1340 | { |
| @@ -3239,7 +3239,7 @@ font_open_for_lface (FRAME_PTR f, Lisp_Object entity, Lisp_Object *attrs, Lisp_O | |||
| 3239 | if (INTEGERP (height)) | 3239 | if (INTEGERP (height)) |
| 3240 | pt = XINT (height); | 3240 | pt = XINT (height); |
| 3241 | else | 3241 | else |
| 3242 | abort(); /* We should never end up here. */ | 3242 | abort (); /* We should never end up here. */ |
| 3243 | } | 3243 | } |
| 3244 | 3244 | ||
| 3245 | pt /= 10; | 3245 | pt /= 10; |
| @@ -3247,7 +3247,7 @@ font_open_for_lface (FRAME_PTR f, Lisp_Object entity, Lisp_Object *attrs, Lisp_O | |||
| 3247 | #ifdef HAVE_NS | 3247 | #ifdef HAVE_NS |
| 3248 | if (size == 0) | 3248 | if (size == 0) |
| 3249 | { | 3249 | { |
| 3250 | Lisp_Object ffsize = get_frame_param(f, Qfontsize); | 3250 | Lisp_Object ffsize = get_frame_param (f, Qfontsize); |
| 3251 | size = NUMBERP (ffsize) ? POINT_TO_PIXEL (XINT (ffsize), f->resy) : 0; | 3251 | size = NUMBERP (ffsize) ? POINT_TO_PIXEL (XINT (ffsize), f->resy) : 0; |
| 3252 | } | 3252 | } |
| 3253 | #endif | 3253 | #endif |