diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-08-05 08:18:04 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2022-08-05 08:18:04 -0400 |
commit | 900b09c0235d54d56ef5e88d04cca61bc71cbbb7 (patch) | |
tree | a31f9836ec46df03fd06ef853e9f0be77f1e0206 /lisp/emacs-lisp | |
parent | 9149672e7f0aa79a064f10bc882fc5c5d617ee8a (diff) | |
download | emacs-900b09c0235d54d56ef5e88d04cca61bc71cbbb7.tar.gz emacs-900b09c0235d54d56ef5e88d04cca61bc71cbbb7.tar.bz2 emacs-900b09c0235d54d56ef5e88d04cca61bc71cbbb7.zip |
bytecomp.el: Further simplifications enabled by commit 59732a83c8875c
* lisp/emacs-lisp/bytecomp.el (byte-compile-output-docform): Don't
insert a \n before the #@ docstrings since make-docfile doesn't scan
.elc files any more.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 7d2971502da..cc9cbd9da58 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -2454,9 +2454,6 @@ list that represents a doc string reference. (and (>= (nth 1 info) 0) dynamic-docstrings (progn - ;; Make the doc string start at beginning of line - ;; for make-docfile's sake. - (insert "\n") (setq position (byte-compile-output-as-comment (nth (nth 1 info) form) nil)) |