diff options
author | Karl Heuer <kwzh@gnu.org> | 1995-12-21 17:33:20 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1995-12-21 17:33:20 +0000 |
commit | 393ae6ec8446f805b001a757ea27d87e556d79f6 (patch) | |
tree | e8ae9de1d4ea16613197c8007db29839ade8acaf | |
parent | 92751e420f01e9d140861c670e6b431de95f4dfc (diff) | |
download | emacs-393ae6ec8446f805b001a757ea27d87e556d79f6.tar.gz |
(byte-compile-output-docform): Don't do dynamic doc
strings if byte-compile-compatibility.
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index 8e7e744e050..20d54630dad 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -1486,6 +1486,7 @@ list that represents a doc string reference. ;; Insert the doc string, and make it a comment with #@LENGTH. (and (>= (nth 1 info) 0) dynamic-docstrings + (not byte-compile-compatibility) (progn ;; Make the doc string start at beginning of line ;; for make-docfile's sake. |