(executable): Finish `defgroup' description with period.
(executable-set-magic): "?\ " -> "?\s".
This commit is contained in:
parent
99730b0e98
commit
67da3b400f
1 changed files with 2 additions and 2 deletions
|
|
@ -53,7 +53,7 @@
|
|||
;;; Code:
|
||||
|
||||
(defgroup executable nil
|
||||
"Base functionality for executable interpreter scripts"
|
||||
"Base functionality for executable interpreter scripts."
|
||||
:group 'processes)
|
||||
|
||||
;; This used to default to `other', but that doesn't seem to have any
|
||||
|
|
@ -230,7 +230,7 @@ executable."
|
|||
(and (goto-char (match-beginning 1))
|
||||
;; If the line ends in a space,
|
||||
;; don't offer to change it.
|
||||
(not (= (char-after (1- (match-end 1))) ?\ ))
|
||||
(not (= (char-after (1- (match-end 1))) ?\s))
|
||||
(not (string= argument
|
||||
(buffer-substring (point) (match-end 1))))
|
||||
(if (or (not executable-query) no-query-flag
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue