summaryrefslogtreecommitdiff
path: root/lisp/byte-run.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-02-04 11:26:42 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-02-04 11:26:42 +0000
commit71296446d3cec5bb2a27bc5ad6da574df38d0ec8 (patch)
tree0204c3c252547a44e2404959409034406f7680cd /lisp/byte-run.el
parent693ff6134cb2ec65c7d188696f012662edadfbf0 (diff)
downloademacs-71296446d3cec5bb2a27bc5ad6da574df38d0ec8.tar.gz
Trailing whitespace deleted.
Diffstat (limited to 'lisp/byte-run.el')
-rw-r--r--lisp/byte-run.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/byte-run.el b/lisp/byte-run.el
index 09c59818b22..538214b7093 100644
--- a/lisp/byte-run.el
+++ b/lisp/byte-run.el
@@ -144,19 +144,19 @@ The result of the body appears to the compiler as a quoted constant."
;; "Set some compilation-parameters for this file. This will affect only the
;; file in which it appears; this does nothing when evaluated, and when loaded
;; from a .el file.
-;;
+;;
;; Each argument to this macro must be a list of a key and a value.
-;;
+;;
;; Keys: Values: Corresponding variable:
-;;
+;;
;; verbose t, nil byte-compile-verbose
;; optimize t, nil, source, byte byte-compile-optimize
;; warnings list of warnings byte-compile-warnings
;; Legal elements: (callargs redefine free-vars unresolved)
;; file-format emacs18, emacs19 byte-compile-compatibility
-;;
+;;
;; For example, this might appear at the top of a source file:
-;;
+;;
;; (byte-compiler-options
;; (optimize t)
;; (warnings (- free-vars)) ; Don't warn about free variables