From 900b09c0235d54d56ef5e88d04cca61bc71cbbb7 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 5 Aug 2022 08:18:04 -0400 Subject: [PATCH] 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. --- lisp/emacs-lisp/bytecomp.el | 3 --- 1 file changed, 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)) -- 2.39.2