1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

(sh, sh-script): Finish `defgroup' description with period.

(sh-maybe-here-document): "?\ " -> "?\s".
This commit is contained in:
Juanma Barranquero 2005-07-04 03:24:03 +00:00
parent 347a0b697c
commit 1689f30906

View File

@ -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 @@ The document is bounded by `sh-here-document-word'."
(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)