bytecomp.el: Further simplifications enabled by commit 59732a83c8

* 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.
This commit is contained in:
Stefan Monnier 2022-08-05 08:18:04 -04:00
parent 9149672e7f
commit 900b09c023

View file

@ -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))