diff options
| author | Richard M. Stallman | 2007-08-12 18:02:39 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-08-12 18:02:39 +0000 |
| commit | 00b733b76ddba1c9e7ffc005134aac129195518a (patch) | |
| tree | 017f86745997732a04c11f0c03b0778cec89eeb7 | |
| parent | a988c1c2396bd51bed71af9cb64444ba787c10f1 (diff) | |
| download | emacs-00b733b76ddba1c9e7ffc005134aac129195518a.tar.gz emacs-00b733b76ddba1c9e7ffc005134aac129195518a.zip | |
(gud-common-init): Use new name split-string-and-unquote.
| -rw-r--r-- | lisp/progmodes/gud.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/gud.el b/lisp/progmodes/gud.el index 06bdd6a0b5f..d5632ffe09f 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 (string->strings command-line)) | 2465 | (let* ((words (split-string-and-unquote 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 |