aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/executable.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/executable.el')
-rw-r--r--lisp/progmodes/executable.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el
index d278b10ba0c..3fff4c04038 100644
--- a/lisp/progmodes/executable.el
+++ b/lisp/progmodes/executable.el
@@ -53,7 +53,7 @@
53;;; Code: 53;;; Code:
54 54
55(defgroup executable nil 55(defgroup executable nil
56 "Base functionality for executable interpreter scripts" 56 "Base functionality for executable interpreter scripts."
57 :group 'processes) 57 :group 'processes)
58 58
59;; This used to default to `other', but that doesn't seem to have any 59;; This used to default to `other', but that doesn't seem to have any
@@ -230,7 +230,7 @@ executable."
230 (and (goto-char (match-beginning 1)) 230 (and (goto-char (match-beginning 1))
231 ;; If the line ends in a space, 231 ;; If the line ends in a space,
232 ;; don't offer to change it. 232 ;; don't offer to change it.
233 (not (= (char-after (1- (match-end 1))) ?\ )) 233 (not (= (char-after (1- (match-end 1))) ?\s))
234 (not (string= argument 234 (not (string= argument
235 (buffer-substring (point) (match-end 1)))) 235 (buffer-substring (point) (match-end 1))))
236 (if (or (not executable-query) no-query-flag 236 (if (or (not executable-query) no-query-flag