changeset 42458:7be0bbebc00f

Remove unnecessary whitespaces.
author Pavel Janík <Pavel@Janik.cz>
date Tue, 01 Jan 2002 00:49:56 +0000
parents 92d30d7a9371
children 0d252eaf4fee
files lisp/enriched.el
diffstat 1 files changed, 8 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/enriched.el	Mon Dec 31 20:53:24 2001 +0000
+++ b/lisp/enriched.el	Tue Jan 01 00:49:56 2002 +0000
@@ -117,7 +117,7 @@
 		   (right       "flushright")
 		   (left        "flushleft")
 		   (full        "flushboth")
-		   (center      "center")) 
+		   (center      "center"))
     (PARAMETER     (t           "param")) ; Argument of preceding annotation
     ;; The following are not part of the standard:
     (FUNCTION      (enriched-decode-foreground "x-color")
@@ -167,7 +167,7 @@
 text/enriched format.
 Turning the mode on runs `enriched-mode-hook'.
 
-More information about Enriched mode is available in the file 
+More information about Enriched mode is available in the file
 etc/enriched.doc in the Emacs distribution directory.
 
 Commands:
@@ -180,7 +180,7 @@
 	 ;; restore old variable values
 	 (while enriched-old-bindings
 	   (set (pop enriched-old-bindings) (pop enriched-old-bindings))))
-	  
+
 	((memq 'text/enriched buffer-file-format)
 	 ;; Mode already on; do nothing.
 	 nil)
@@ -288,7 +288,7 @@
     (unjustify-region)
     (goto-char from)
     (format-replace-strings '(("<" . "<<")))
-    (format-insert-annotations 
+    (format-insert-annotations
      (format-annotate-region from (point-max) enriched-translations
 			     'enriched-make-annotation enriched-ignore))
     (goto-char from)
@@ -330,7 +330,7 @@
 One annotation each for foreground color, background color, italic, etc."
   (cons (and old (enriched-face-ans old))
 	(and new (enriched-face-ans new))))
-	    
+
 (defun enriched-face-ans (face)
   "Return annotations specifying FACE.
 FACE may be a list of faces instead of a single face;
@@ -407,12 +407,12 @@
 	(delete-char 1)
       ;; A single < that does not start an annotation is an error,
       ;; which we note and then ignore.
-      (message "Warning: malformed annotation in file at %s" 
+      (message "Warning: malformed annotation in file at %s"
 	       (1- (point)))))
   (if (not (eobp))
       (let* ((beg (match-beginning 0))
 	     (end (match-end 0))
-	     (name (downcase (buffer-substring 
+	     (name (downcase (buffer-substring
 			      (match-beginning 2) (match-end 2))))
 	     (pos (not (match-beginning 1))))
 	(list beg end name pos))))
@@ -481,6 +481,5 @@
     (unless prop
       (message "Warning: invalid <x-display> parameter %s" param))
     (list start end 'display prop)))
-	       
-	   
+
 ;;; enriched.el ends here