aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-01-07 05:20:57 +0000
committerRichard M. Stallman2002-01-07 05:20:57 +0000
commitea127bf417eb745c9444a97441112a9c33893266 (patch)
tree74af9970ead379c33397e9c4e0872821be550e85
parent5a6a8d3b9673e1d684113a7034290b991c091197 (diff)
downloademacs-ea127bf417eb745c9444a97441112a9c33893266.tar.gz
emacs-ea127bf417eb745c9444a97441112a9c33893266.zip
Fix indentation.
-rw-r--r--lisp/help-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/help-mode.el b/lisp/help-mode.el
index e40cb600d82..e041f2f03e8 100644
--- a/lisp/help-mode.el
+++ b/lisp/help-mode.el
@@ -507,13 +507,13 @@ help buffer."
507 (sdoc 507 (sdoc
508 ;; We now have a help buffer on the variable. 508 ;; We now have a help buffer on the variable.
509 ;; Insert the function and face text before it. 509 ;; Insert the function and face text before it.
510 (when (or fdoc facedoc) 510 (when (or fdoc facedoc)
511 (goto-char (point-min)) 511 (goto-char (point-min))
512 (let ((inhibit-read-only t)) 512 (let ((inhibit-read-only t))
513 (when fdoc 513 (when fdoc
514 (insert fdoc "\n\n") 514 (insert fdoc "\n\n")
515 (when facedoc 515 (when facedoc
516 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol) 516 (insert (make-string 30 ?-) "\n\n" (symbol-name symbol)
517 " is also a " "face." "\n\n"))) 517 " is also a " "face." "\n\n")))
518 (when facedoc 518 (when facedoc
519 (insert facedoc "\n\n")) 519 (insert facedoc "\n\n"))