]> git.eshelyaron.com Git - emacs.git/commitdiff
Whitespace change.
authorRichard M. Stallman <rms@gnu.org>
Mon, 31 Dec 2007 03:43:15 +0000 (03:43 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 31 Dec 2007 03:43:15 +0000 (03:43 +0000)
lisp/cus-edit.el

index f17e6de758aa3432bc09e10db2a2ff452ffb1f3e..941e1ec5e7cd709d3d624deacec0a61a1a23f872 100644 (file)
@@ -2344,22 +2344,22 @@ If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"."
            (when links
              (let ((pt (point))
                    (left-margin (+ left-margin 2)))
-            (insert "\n" (or doc-initial-string "Group documentation:") " ")
-             (while links
-               (push (widget-create-child-and-convert
-                     widget (car links)
-                     :button-face 'custom-link
-                     :mouse-face 'highlight
-                     :pressed-face 'highlight)
-                     buttons)
-               (setq links (cdr links))
-               (cond ((null links)
-                      (insert ".\n"))
-                     ((null (cdr links))
-                      (if many
-                          (insert ", and ")
-                        (insert " and ")))
-                     (t
+              (insert "\n" (or doc-initial-string "Group documentation:") " ")
+              (while links
+                (push (widget-create-child-and-convert
+                       widget (car links)
+                       :button-face 'custom-link
+                       :mouse-face 'highlight
+                       :pressed-face 'highlight)
+                      buttons)
+                (setq links (cdr links))
+                (cond ((null links)
+                       (insert ".\n"))
+                      ((null (cdr links))
+                       (if many
+                           (insert ", and ")
+                         (insert " and ")))
+                      (t
                         (insert ", "))))
                (fill-region-as-paragraph pt (point))
                (delete-to-left-margin (1+ pt) (+ pt 2))))))