diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2019-06-10 23:47:01 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2019-06-10 23:47:01 +0200 |
commit | add2cac586d29c574ae4ba12a2252dce0694f1d4 (patch) | |
tree | ce243fe248d16ceb2a4a9eba17e0adee79a1ddaa /lisp/subr.el | |
parent | fdd1b3e02097966e7ffe8065f6e3d27f5f540d0a (diff) | |
download | emacs-add2cac586d29c574ae4ba12a2252dce0694f1d4.tar.gz |
lisp/*.el: Minor docstring fixes
* lisp/subr.el (definition-prefixes): Reflow docstring.
* lisp/svg.el (svg-create): Doc fix to allow arg higlighting.
(svg-gradient, svg-rectangle): Improve docstring formatting.
Diffstat (limited to 'lisp/subr.el')
-rw-r--r-- | lisp/subr.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 54bee8a809f..5a08cebf556 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -5223,15 +5223,15 @@ This is the simplest safe way to acquire and release a mutex." (defvar definition-prefixes (make-hash-table :test 'equal) "Hash table mapping prefixes to the files in which they're used. This can be used to automatically fetch not-yet-loaded definitions. -More specifically, if there is a value of the form (FILES...) for a string PREFIX -it means that the FILES define variables or functions with names that start -with PREFIX. +More specifically, if there is a value of the form (FILES...) for +a string PREFIX it means that the FILES define variables or functions +with names that start with PREFIX. Note that it does not imply that all definitions starting with PREFIX can be found in those files. E.g. if prefix is \"gnus-article-\" there might -still be definitions of the form \"gnus-article-toto-titi\" in other files, which would -presumably appear in this table under another prefix such as \"gnus-\" -or \"gnus-article-toto-\".") +still be definitions of the form \"gnus-article-toto-titi\" in other files, +which would presumably appear in this table under another prefix such as +\"gnus-\" or \"gnus-article-toto-\".") (defun register-definition-prefixes (file prefixes) "Register that FILE uses PREFIXES." |