Function: idlwave-shell-filename-string

idlwave-shell-filename-string is a byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-filename-string)

Documentation

Return t if in a string and after what could be a file name.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-filename-string ()
  "Return t if in a string and after what could be a file name."
  (let ((limit (point-at-bol)))
    (save-excursion
      ;; Skip backwards over file name chars
      (skip-chars-backward idlwave-shell-file-name-chars limit)
      ;; Check of the next char is a string delimiter
      (and (memq (preceding-char) '(?\' ?\")) t))))