diff lisp/byte-run.el @ 49588:37645a051842

Trailing whitespace deleted.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 04 Feb 2003 11:26:42 +0000
parents fa490904bee0
children 5f08948e8c4b
line wrap: on
line diff
--- a/lisp/byte-run.el	Tue Feb 04 10:58:53 2003 +0000
+++ b/lisp/byte-run.el	Tue Feb 04 11:26:42 2003 +0000
@@ -144,19 +144,19 @@
 ;;   "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