Mercurial > emacs
changeset 64051:d700ccca5bd4
(sh, sh-script): Finish `defgroup' description with period.
(sh-maybe-here-document): "?\ " -> "?\s".
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 04 Jul 2005 03:24:03 +0000 |
parents | a81b0edd5034 |
children | 68f51d595f7f |
files | lisp/progmodes/sh-script.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/sh-script.el Mon Jul 04 03:22:03 2005 +0000 +++ b/lisp/progmodes/sh-script.el Mon Jul 04 03:24:03 2005 +0000 @@ -202,12 +202,12 @@ (defgroup sh nil - "Shell programming utilities" + "Shell programming utilities." :group 'unix :group 'languages) (defgroup sh-script nil - "Shell script mode" + "Shell script mode." :group 'sh :prefix "sh-") @@ -3535,7 +3535,7 @@ (delim (replace-regexp-in-string "['\"]" "" sh-here-document-word))) (insert sh-here-document-word) - (or (eolp) (looking-at "[ \t]") (insert ? )) + (or (eolp) (looking-at "[ \t]") (insert ?\s)) (end-of-line 1) (while (sh-quoted-p)