diff options
Diffstat (limited to 'lisp/progmodes/idlw-shell.el')
-rw-r--r-- | lisp/progmodes/idlw-shell.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el index dde51b355e5..3367454c1cc 100644 --- a/lisp/progmodes/idlw-shell.el +++ b/lisp/progmodes/idlw-shell.el @@ -2155,7 +2155,7 @@ args of an executive .run, .rnew or .compile." ;; Skip backwards over file name chars (skip-chars-backward idlwave-shell-file-name-chars limit) ;; Check of the next char is a string delimiter - (memq (preceding-char) '(?\' ?\"))))) + (and (memq (preceding-char) '(?\' ?\")) t)))) (defun idlwave-shell-batch-command () "Return t if we're in a batch command statement like @foo" |