diff options
| author | Joakim Verona | 2014-06-23 10:04:07 +0200 |
|---|---|---|
| committer | Joakim Verona | 2014-06-23 10:04:07 +0200 |
| commit | d92d0dd4f2d6b04a3ae148ac36ff96c9b109196d (patch) | |
| tree | 0d253c8ec73b1733fe8ec09be1b15611b9ae7a06 /src | |
| parent | c4916d541b6f91e80283b473c5191651c719228a (diff) | |
| download | emacs-d92d0dd4f2d6b04a3ae148ac36ff96c9b109196d.tar.gz emacs-d92d0dd4f2d6b04a3ae148ac36ff96c9b109196d.zip | |
fixes: PREPARE_FACE_FOR_DISPLAY was removed, DEFUN less lenient
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 2 | ||||
| -rw-r--r-- | src/xwidget.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 82ec9e8ce4e..975f872389d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -25347,7 +25347,7 @@ produce_xwidget_glyph (struct it *it) | |||
| 25347 | face = FACE_FROM_ID (it->f, it->face_id); | 25347 | face = FACE_FROM_ID (it->f, it->face_id); |
| 25348 | eassert (face); | 25348 | eassert (face); |
| 25349 | /* Make sure X resources of the face is loaded. */ | 25349 | /* Make sure X resources of the face is loaded. */ |
| 25350 | PREPARE_FACE_FOR_DISPLAY (it->f, face); | 25350 | prepare_face_for_display (it->f, face); |
| 25351 | 25351 | ||
| 25352 | xw = it->xwidget; | 25352 | xw = it->xwidget; |
| 25353 | it->ascent = it->phys_ascent = glyph_ascent = xw->height/2; | 25353 | it->ascent = it->phys_ascent = glyph_ascent = xw->height/2; |
diff --git a/src/xwidget.c b/src/xwidget.c index aafdfe63662..15e5978a2fb 100644 --- a/src/xwidget.c +++ b/src/xwidget.c | |||
| @@ -606,7 +606,8 @@ xwidget_osr_event_forward (GtkWidget *widget, | |||
| 606 | } | 606 | } |
| 607 | 607 | ||
| 608 | GIRepository *girepository ; | 608 | GIRepository *girepository ; |
| 609 | DEFUN( "xwgir-require-namespace",Fxwgir_require_namespace, Sxwgir_require_namespace, 2,2,0, | 609 | |
| 610 | DEFUN ("xwgir-require-namespace", Fxwgir_require_namespace, Sxwgir_require_namespace, 2,2,0, | ||
| 610 | doc: /*require a namespace. must be done for all namespaces we want to use, before using other xwgir functions.*/) | 611 | doc: /*require a namespace. must be done for all namespaces we want to use, before using other xwgir functions.*/) |
| 611 | (Lisp_Object lnamespace, Lisp_Object lnamespace_version) | 612 | (Lisp_Object lnamespace, Lisp_Object lnamespace_version) |
| 612 | { | 613 | { |