Function: gud-jdb-parse-classpath-string
gud-jdb-parse-classpath-string is a byte-compiled function defined in
gud.el.gz.
Signature
(gud-jdb-parse-classpath-string STRING)
Documentation
Parse the classpath list and convert each item to an absolute pathname.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defun gud-jdb-parse-classpath-string (string)
"Parse the classpath list and convert each item to an absolute pathname."
(mapcar (lambda (s) (if (string-match "[/\\]$" s)
(replace-match "" nil nil s) s))
(mapcar #'file-truename
(split-string
string
(concat "[ \t\n\r,\"" path-separator "]+")))))