diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-09-18 14:56:55 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-09-18 14:56:55 +0300 |
commit | 83e3d8d8795c8162490a83f5d1a9d14763b8694f (patch) | |
tree | f49c407ca0977ebe039c0eb0903ce9a53c4e7b0d /lisp/emacs-lisp/comp.el | |
parent | 031e1c28f9ee3971b1376f30f1c8a010432e529b (diff) | |
download | emacs-83e3d8d8795c8162490a83f5d1a9d14763b8694f.tar.gz emacs-83e3d8d8795c8162490a83f5d1a9d14763b8694f.tar.bz2 emacs-83e3d8d8795c8162490a83f5d1a9d14763b8694f.zip |
Improve doc strings of a recent commit
* lisp/emacs-lisp/generator.el (iter-defun):
* lisp/emacs-lisp/comp.el (comp-clean-up-stale-eln):
* lisp/emacs-lisp/bytecomp.el (byte-compile-lapcode):
* lisp/emacs-lisp/autoload.el (autoload-insert-section-header):
Include description of arguments in the doc string's first line.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index ab36b8aa907..31cae734ccc 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -3804,8 +3804,9 @@ Return the trampoline if found or nil otherwise." ;;;###autoload (defun comp-clean-up-stale-eln (file) - "Given FILE remove all its *.eln files in `native-comp-eln-load-path'. -sharing the original source filename (including FILE)." + "Remove all FILE*.eln* files found in `native-comp-eln-load-path'. +The files to be removed are those produced from the original source +filename (including FILE)." (when (string-match (rx "-" (group-n 1 (1+ hex)) "-" (1+ hex) ".eln" eos) file) (cl-loop |