diff options
| author | YAMAMOTO Mitsuharu | 2019-06-10 10:06:26 +0900 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2019-06-10 10:08:53 +0900 |
| commit | e4f12a1b1ffba07cc7d6f6e1aec5de9f09af616f (patch) | |
| tree | f6f2bbee9196ceb22395988370d9c6d9b90b650f /src | |
| parent | 0f67be92592ef82d971d004f4063e68682c123de (diff) | |
| download | emacs-e4f12a1b1ffba07cc7d6f6e1aec5de9f09af616f.tar.gz emacs-e4f12a1b1ffba07cc7d6f6e1aec5de9f09af616f.zip | |
Document exporting/printing text with X core fonts to outline images on cairo
* src/xfns.c (Fx_export_frames) [USE_CAIRO]:
(Fx_print_frames_dialog) [USE_CAIRO && USE_GTK]: Add notes on x font backend.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfns.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/xfns.c b/src/xfns.c index 46f19ff82ac..5787abb5281 100644 --- a/src/xfns.c +++ b/src/xfns.c | |||
| @@ -7446,7 +7446,10 @@ FRAMES should be nil (the selected frame), a frame, or a list of | |||
| 7446 | frames (each of which corresponds to one page). Each frame should be | 7446 | frames (each of which corresponds to one page). Each frame should be |
| 7447 | visible. Optional arg TYPE should be either `pdf' (default), `png', | 7447 | visible. Optional arg TYPE should be either `pdf' (default), `png', |
| 7448 | `postscript', or `svg'. Supported types are determined by the | 7448 | `postscript', or `svg'. Supported types are determined by the |
| 7449 | compile-time configuration of cairo. */) | 7449 | compile-time configuration of cairo. |
| 7450 | |||
| 7451 | Note: Text drawn with the `x' font backend is shown with hollow boxes | ||
| 7452 | unless TYPE is `png'. */) | ||
| 7450 | (Lisp_Object frames, Lisp_Object type) | 7453 | (Lisp_Object frames, Lisp_Object type) |
| 7451 | { | 7454 | { |
| 7452 | Lisp_Object rest, tmp; | 7455 | Lisp_Object rest, tmp; |
| @@ -7548,7 +7551,9 @@ DEFUN ("x-print-frames-dialog", Fx_print_frames_dialog, Sx_print_frames_dialog, | |||
| 7548 | doc: /* Pop up a print dialog to print the current contents of FRAMES. | 7551 | doc: /* Pop up a print dialog to print the current contents of FRAMES. |
| 7549 | FRAMES should be nil (the selected frame), a frame, or a list of | 7552 | FRAMES should be nil (the selected frame), a frame, or a list of |
| 7550 | frames (each of which corresponds to one page). Each frame should be | 7553 | frames (each of which corresponds to one page). Each frame should be |
| 7551 | visible. */) | 7554 | visible. |
| 7555 | |||
| 7556 | Note: Text drawn with the `x' font backend is shown with hollow boxes. */) | ||
| 7552 | (Lisp_Object frames) | 7557 | (Lisp_Object frames) |
| 7553 | { | 7558 | { |
| 7554 | Lisp_Object rest, tmp; | 7559 | Lisp_Object rest, tmp; |