]> git.eshelyaron.com Git - emacs.git/commitdiff
(shell-unquote-argument): New function.
authorKarl Heuer <kwzh@gnu.org>
Tue, 20 Jul 1999 04:16:51 +0000 (04:16 +0000)
committerKarl Heuer <kwzh@gnu.org>
Tue, 20 Jul 1999 04:16:51 +0000 (04:16 +0000)
(shell-directory-tracker): Use shell-unquote-argument.

lisp/shell.el

index aee3866c6e6b1c6c5dd37f4844f7b5517d8738c3..a2887f82792f7faf7c406857607353de1b5d6956 100644 (file)
@@ -542,6 +542,8 @@ Environment variables are expanded, see function `substitute-in-file-name'."
              (setq end (match-end 0)
                    cmd (comint-arguments (substring str start end) 0 0)
                    arg1 (comint-arguments (substring str start end) 1 1))
+             (if arg1
+                 (setq arg1 (shell-unquote-argument arg1)))
              (cond ((string-match (concat "\\`\\(" shell-popd-regexp
                                           "\\)\\($\\|[ \t]\\)")
                                   cmd)
@@ -563,6 +565,25 @@ Environment variables are expanded, see function `substitute-in-file-name'."
                                 (match-end 0)))))
        (error "Couldn't cd"))))
 
+(defun shell-unquote-argument (string)
+  "Remove all kinds of shell quoting from STRING."
+  (save-match-data
+    (let ((idx 0) next inside)
+      (while (and (< idx (length string))
+                 (setq next (string-match "[\\'`\"]" string next)))
+       (cond ((= (aref string next) ?\\)
+              (setq string (replace-match "" nil nil string))
+              (setq next (1+ next)))
+             ((and inside (= (aref string next) inside))
+              (setq string (replace-match "" nil nil string))
+              (setq inside nil))
+             (inside
+              (setq next (1+ next)))
+             (t
+              (setq inside (aref string next))
+              (setq string (replace-match "" nil nil string)))))
+      string)))
+
 ;;; popd [+n]
 (defun shell-process-popd (arg)
   (let ((num (or (shell-extract-num arg) 0)))