summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/byte-run.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-09-18 13:12:41 +0200
committerStefan Kangas <stefan@marxist.se>2021-09-18 13:14:50 +0200
commitdd1220b96972d77e5bbe1094586514bae63fe1eb (patch)
tree1c5295b91b316ffc40931cd02c1f4fc028ec2097 /lisp/emacs-lisp/byte-run.el
parent11d6d6c3ea8d3f131b0b21db6e51a66d8b20d40e (diff)
downloademacs-dd1220b96972d77e5bbe1094586514bae63fe1eb.tar.gz
; More stylistic docfixes in emacs-lisp/*.el found by checkdoc
Diffstat (limited to 'lisp/emacs-lisp/byte-run.el')
-rw-r--r--lisp/emacs-lisp/byte-run.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/byte-run.el b/lisp/emacs-lisp/byte-run.el
index 6d698ffb6f0..35c80e524cf 100644
--- a/lisp/emacs-lisp/byte-run.el
+++ b/lisp/emacs-lisp/byte-run.el
@@ -529,11 +529,11 @@ is enabled."
(list 'quote (eval (cons 'progn body) lexical-binding)))
(defmacro eval-and-compile (&rest body)
- "Like `progn', but evaluates the body at compile time and at
-load time. In interpreted code, this is entirely equivalent to
-`progn', except that the value of the expression may be (but is
-not necessarily) computed at load time if eager macro expansion
-is enabled."
+ "Like `progn', but evaluates the body at compile time and at load time.
+In interpreted code, this is entirely equivalent to `progn',
+except that the value of the expression may be (but is not
+necessarily) computed at load time if eager macro expansion is
+enabled."
(declare (debug (&rest def-form)) (indent 0))
;; When the byte-compiler expands code, this macro is not used, so we're
;; either about to run `body' (plain interpretation) or we're doing eager