aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Roberts2007-06-28 01:33:18 +0000
committerNick Roberts2007-06-28 01:33:18 +0000
commit7f87eddbacb85cc63128e535fda4d9a31fab3f73 (patch)
tree6b5b0fc6dab081fb3b13329547a3f3ec5a0b356c
parent8315a3b58fd1bed5e28a7835fe310da92064930c (diff)
downloademacs-7f87eddbacb85cc63128e535fda4d9a31fab3f73.tar.gz
emacs-7f87eddbacb85cc63128e535fda4d9a31fab3f73.zip
(gud-common-init): Call string->strings instead
of split-string.
-rw-r--r--lisp/progmodes/gud.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el
index e557fdef843..aa382d4e185 100644
--- a/lisp/progmodes/gud.el
+++ b/lisp/progmodes/gud.el
@@ -2462,7 +2462,7 @@ comint mode, which see."
2462;; for local variables in the debugger buffer. 2462;; for local variables in the debugger buffer.
2463(defun gud-common-init (command-line massage-args marker-filter 2463(defun gud-common-init (command-line massage-args marker-filter
2464 &optional find-file) 2464 &optional find-file)
2465 (let* ((words (split-string command-line)) 2465 (let* ((words (string->strings command-line))
2466 (program (car words)) 2466 (program (car words))
2467 (dir default-directory) 2467 (dir default-directory)
2468 ;; Extract the file name from WORDS 2468 ;; Extract the file name from WORDS