]> git.eshelyaron.com Git - emacs.git/commitdiff
(sh-indent-for-fi, sh-indent-for-done): Fix spacing.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 6 Sep 2002 07:17:05 +0000 (07:17 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 6 Sep 2002 07:17:05 +0000 (07:17 +0000)
lisp/progmodes/sh-script.el

index 57baecef17d096044f6c93730b34eeb922f7437c..1bd27f7d6237f4bfef0c2cb66263cbed4cd830ad 100644 (file)
 ;; You can do this automatically like this:
 ;;   (add-hook 'sh-set-shell-hook 'sh-learn-buffer-indent)
 ;;
-;; However...   `sh-learn-buffer-indent' is extremely slow,
+;; However...  `sh-learn-buffer-indent' is extremely slow,
 ;; especially on large-ish buffer.  Also, if there are conflicts the
 ;; "last one wins" which may not produce the desired setting.
 ;;
@@ -1058,12 +1058,12 @@ a number means align to that column, e.g. 0 means fist column."
          sh-symbol-list))
 
 (defcustom sh-indent-for-fi 0
-  "*How much to indent a fi relative to an if.   Usually 0."
+  "*How much to indent a fi relative to an if.  Usually 0."
   :type `(choice ,@ sh-number-or-symbol-list )
   :group 'sh-indentation)
 
 (defcustom sh-indent-for-done '0
-  "*How much to indent a done relative to its matching stmt.   Usually 0."
+  "*How much to indent a done relative to its matching stmt.  Usually 0."
   :type `(choice ,@ sh-number-or-symbol-list )
   :group 'sh-indentation)