diff lisp/subr.el @ 5385:53077bf7c718

(shell-quote-argument): New function.
author Richard M. Stallman <rms@gnu.org>
date Fri, 31 Dec 1993 09:25:12 +0000
parents d907b978082e
children a248a39fa4b8
line wrap: on
line diff
--- a/lisp/subr.el	Fri Dec 31 06:59:31 1993 +0000
+++ b/lisp/subr.el	Fri Dec 31 09:25:12 1993 +0000
@@ -643,6 +643,18 @@
            (cons 'progn body)
            (list 'store-match-data original)))))
 
+(defun shell-quote-argument (argument)
+  "Quote an argument for passing as argument to an inferior shell."
+  ;; Quote everything except POSIX filename characters.
+  ;; This should be safe enough even for really weird shells.
+  (let ((result "") (start 0) end)
+    (while (string-match "[^---0-9a-zA-Z_./]" argument start)
+      (setq end (match-beginning 0)
+	    result (concat result (substring argument start end)
+			   "\\" (substring argument end (1+ end)))
+	    start (1+ end)))
+    (concat result (substring argument start))))
+
 ;; now in fns.c
 ;(defun nth (n list)
 ;  "Returns the Nth element of LIST.