From: Stefan Monnier Date: Fri, 5 Aug 2022 12:18:04 +0000 (-0400) Subject: bytecomp.el: Further simplifications enabled by commit 59732a83c8875c X-Git-Tag: emacs-29.0.90~1447^2~410 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=900b09c0235d54d56ef5e88d04cca61bc71cbbb7;p=emacs.git 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. --- 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))