File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -5223,15 +5223,15 @@ This is the simplest safe way to acquire and release a mutex."
5223
5223
(defvar definition-prefixes (make-hash-table :test 'equal )
5224
5224
" Hash table mapping prefixes to the files in which they're used.
5225
5225
This can be used to automatically fetch not-yet-loaded definitions.
5226
- More specifically, if there is a value of the form (FILES...) for a string PREFIX
5227
- it means that the FILES define variables or functions with names that start
5228
- with PREFIX.
5226
+ More specifically, if there is a value of the form (FILES...) for
5227
+ a string PREFIX it means that the FILES define variables or functions
5228
+ with names that start with PREFIX.
5229
5229
5230
5230
Note that it does not imply that all definitions starting with PREFIX can
5231
5231
be found in those files. E.g. if prefix is \" gnus-article-\" there might
5232
- still be definitions of the form \" gnus-article-toto-titi\" in other files, which would
5233
- presumably appear in this table under another prefix such as \" gnus- \"
5234
- or \" gnus-article-toto-\" ." )
5232
+ still be definitions of the form \" gnus-article-toto-titi\" in other files,
5233
+ which would presumably appear in this table under another prefix such as
5234
+ \" gnus- \" or \" gnus-article-toto-\" ." )
5235
5235
5236
5236
(defun register-definition-prefixes (file prefixes )
5237
5237
" Register that FILE uses PREFIXES."
Original file line number Diff line number Diff line change 30
30
(eval-when-compile (require 'subr-x ))
31
31
32
32
(defun svg-create (width height &rest args )
33
- " Create a new, empty SVG image with dimensions WIDTHxHEIGHT .
33
+ " Create a new, empty SVG image with dimensions WIDTH x HEIGHT .
34
34
ARGS can be used to provide `stroke' and `stroke-width' parameters to
35
35
any further elements added."
36
36
(dom-node 'svg
@@ -42,8 +42,8 @@ any further elements added."
42
42
43
43
(defun svg-gradient (svg id type stops )
44
44
" Add a gradient with ID to SVG.
45
- TYPE is `linear' or `radial' . STOPS is a list of percentage/color
46
- pairs."
45
+ TYPE is `linear' or `radial' .
46
+ STOPS is a list of percentage/color pairs."
47
47
(svg--def
48
48
svg
49
49
(apply
@@ -66,9 +66,9 @@ pairs."
66
66
" Create a rectangle on SVG, starting at position X/Y, of WIDTH/HEIGHT.
67
67
ARGS is a plist of modifiers. Possible values are
68
68
69
- :stroke-width PIXELS. The line width.
70
- :stroke-color COLOR. The line color.
71
- :gradient ID. The gradient ID to use."
69
+ :stroke-width PIXELS The line width.
70
+ :stroke-color COLOR The line color.
71
+ :gradient ID The gradient ID to use."
72
72
(svg--append
73
73
svg
74
74
(dom-node 'rect
You can’t perform that action at this time.
0 commit comments