Changeset 14429
- Timestamp:
- Nov 12, 2010, 7:51:15 PM (14 years ago)
- File:
-
- 1 edited
-
trunk/source/cocoa-ide/cocoa-editor.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/source/cocoa-ide/cocoa-editor.lisp
r14363 r14429 1802 1802 "Return a pathname that STRING might designate." 1803 1803 ;; We could get fancy here, but for now just be stupid. 1804 (let ((pathname (ignore-errors (probe-file string)))) 1804 (let* ((rfs (ignore-errors (read-from-string string nil nil))) 1805 (pathname (or (ignore-errors (probe-file string)) 1806 (ignore-errors (probe-file rfs)) 1807 (ignore-errors (probe-file (merge-pathnames *.lisp-pathname* string))) 1808 (ignore-errors (probe-file (merge-pathnames *.lisp-pathname* rfs)))))) 1805 1809 (if (and (pathnamep pathname) 1806 1810 (not (directory-pathname-p pathname)))
Note:
See TracChangeset
for help on using the changeset viewer.
