comparison lisp/progmodes/gud.el @ 81645:8fb0b13a76a7

(gud-common-init): Call string->strings instead of split-string.
author Nick Roberts <nickrob@snap.net.nz>
date Thu, 28 Jun 2007 01:33:18 +0000
parents cb9aae08782f
children cd3e38bb3dc7 988f1edc9674
comparison
equal deleted inserted replaced
81644:67135a46736a 81645:8fb0b13a76a7
2460 ;; which starts with the program to debug. 2460 ;; which starts with the program to debug.
2461 ;; The other three args specify the values to use 2461 ;; The other three args specify the values to use
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
2469 ;; and put t in its place. 2469 ;; and put t in its place.
2470 ;; Later on we will put the modified file name arg back there. 2470 ;; Later on we will put the modified file name arg back there.