diff options
| author | Charles A. Roelli | 2018-03-10 19:19:00 +0100 |
|---|---|---|
| committer | Charles A. Roelli | 2018-03-10 19:19:27 +0100 |
| commit | df0e7e2b9e98e45353d3555448cb0f7d5a20a00d (patch) | |
| tree | 39b354a887ebbc4b0b3620812748c0afbb2cf874 | |
| parent | a34ef529642360130b32a6b5032ad6de2e24baa8 (diff) | |
| download | emacs-df0e7e2b9e98e45353d3555448cb0f7d5a20a00d.tar.gz emacs-df0e7e2b9e98e45353d3555448cb0f7d5a20a00d.zip | |
Improve SVG documentation
* doc/lispref/display.texi (ImageMagick Images): Remove an
outdated comment that references a fixed bug.
(SVG Images): Fix grammar, and call functions functions (there are
no commands in lisp/svg.el).
| -rw-r--r-- | doc/lispref/display.texi | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/lispref/display.texi b/doc/lispref/display.texi index dcd2fcffb49..2ac89ba970e 100644 --- a/doc/lispref/display.texi +++ b/doc/lispref/display.texi | |||
| @@ -5387,7 +5387,6 @@ hint to ImageMagick to help it detect the image type. | |||
| 5387 | Specifies a rotation angle in degrees. | 5387 | Specifies a rotation angle in degrees. |
| 5388 | 5388 | ||
| 5389 | @item :index @var{frame} | 5389 | @item :index @var{frame} |
| 5390 | @c Doesn't work: https://debbugs.gnu.org/7978 | ||
| 5391 | @xref{Multi-Frame Images}. | 5390 | @xref{Multi-Frame Images}. |
| 5392 | @end table | 5391 | @end table |
| 5393 | 5392 | ||
| @@ -5396,8 +5395,8 @@ Specifies a rotation angle in degrees. | |||
| 5396 | @cindex SVG images | 5395 | @cindex SVG images |
| 5397 | 5396 | ||
| 5398 | SVG (Scalable Vector Graphics) is an XML format for specifying images. | 5397 | SVG (Scalable Vector Graphics) is an XML format for specifying images. |
| 5399 | If your Emacs build has with SVG support, you can create and manipulate | 5398 | If your Emacs build has SVG support, you can create and manipulate |
| 5400 | these images with the following commands. | 5399 | these images with the following functions. |
| 5401 | 5400 | ||
| 5402 | @defun svg-create width height &rest args | 5401 | @defun svg-create width height &rest args |
| 5403 | Create a new, empty SVG image with the specified dimensions. | 5402 | Create a new, empty SVG image with the specified dimensions. |
| @@ -5411,7 +5410,7 @@ The default width (in pixels) of any lines created. | |||
| 5411 | The default stroke color on any lines created. | 5410 | The default stroke color on any lines created. |
| 5412 | @end table | 5411 | @end table |
| 5413 | 5412 | ||
| 5414 | This function returns an SVG structure, and all the following commands | 5413 | This function returns an SVG structure, and all the following functions |
| 5415 | work on that structure. | 5414 | work on that structure. |
| 5416 | @end defun | 5415 | @end defun |
| 5417 | 5416 | ||