]> git.eshelyaron.com Git - emacs.git/commitdiff
(widget-documentation-string-value-create): Insert indentation spaces.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 5 Jul 2007 22:10:48 +0000 (22:10 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 5 Jul 2007 22:10:48 +0000 (22:10 +0000)
lisp/wid-edit.el

index a69ebdc85e9bcd557f2b4c1c1ca084dca11ff453..f58b1515f7bfcc4183fc781309a63cd18a940203 100644 (file)
@@ -2910,6 +2910,8 @@ link for that string."
        (let ((before (substring doc 0 (match-beginning 0)))
              (after (substring doc (match-beginning 0)))
              button)
+         (when (and indent (not (zerop indent)))
+           (insert-char ?\s indent))
          (insert before ?\s)
          (widget-documentation-link-add widget start (point))
          (setq button
@@ -2928,6 +2930,8 @@ link for that string."
            (insert after)
            (widget-documentation-link-add widget start (point)))
          (widget-put widget :buttons (list button)))
+      (when (and indent (not (zerop indent)))
+       (insert-char ?\s indent))
       (insert doc)
       (widget-documentation-link-add widget start (point))))
   (insert ?\n))