Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
f3c8d32f
"src/code/debug-vm.lisp" did not exist on "99a5797f72ae3a43d8e5909653770f044f993c17"
Commit
f3c8d32f
authored
33 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Fixed the dir translation stuff to deal with the new pathname syntax.
parent
691d4683
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
hemlock/edit-defs.lisp
+11
-35
11 additions, 35 deletions
hemlock/edit-defs.lisp
with
11 additions
and
35 deletions
hemlock/edit-defs.lisp
+
11
−
35
View file @
f3c8d32f
...
...
@@ -7,15 +7,13 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/edit-defs.lisp,v 1.
3
1991/1
1/07 17:44:16
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/hemlock/edit-defs.lisp,v 1.
4
1991/1
2/18 22:36:30
wlott Exp $"
)
;;;
;;; **********************************************************************
;;;
;;; Editing DEFMACRO and DEFUN definitions. Also, has directory translation
;;; code for moved and/or different sources.
;;;
;;; This file is not portable, but if the last function is replaced with its
;;; commented-out original definition, the file will be portable.
(
in-package
'hemlock
)
...
...
@@ -258,13 +256,11 @@
(
setf
file
f
)
(
return
f
))))))
;;; MAYBE-TRANSLATE-DEFINITION-FILE tries each directory subsequence from the
;;; most specific to the least looking a user defined translation. At the end
;;; of the file there is a commented out version of this function that is
;;; portable (no "/" monkeying around), but it only checks the entire directory
;;; string for a translation. This returns the portion of the input directory
;;; sequence that was not matched (to be merged with the mapping of the matched
;;; portion), the list of post image directories, and the file name.
;;; MAYBE-TRANSLATE-DEFINITION-FILE tries each directory subsequence from
;;; the most specific to the least looking a user defined translation.
;;; This returns the portion of the input directory sequence that was not
;;; matched (to be merged with the mapping of the matched portion), the
;;; list of post image directories, and the file name.
;;;
(
defun
maybe-translate-definition-file
(
file
)
(
let*
((
pathname
(
pathname
file
))
...
...
@@ -272,10 +268,9 @@
(
dirs
(
pathname-directory
maybe-truename
))
(
len
(
length
dirs
))
(
i
len
))
(
declare
(
simple-vector
dirs
)
(
fixnum
len
i
))
(
declare
(
fixnum
len
i
))
(
loop
(
when
(
zerop
i
)
(
return
nil
))
(
when
(
<=
i
1
)
(
return
nil
))
(
let
((
new-dirs
(
getstring
(
directory-namestring
(
make-pathname
:defaults
"/"
:directory
(
subseq
dirs
0
i
)))
...
...
@@ -286,15 +281,12 @@
(
decf
i
))))
;;; TRANSLATE-DEFINITION-FILE creates a directory sequence from unmatched-dir
;;; and new-dir, creating a translated pathname for GO-TO-DEFINITION. A
;;; portable version of this is described at the end of this file.
;;; and new-dir, creating a translated pathname for GO-TO-DEFINITION.
;;;
(
defun
translate-definition-file
(
unmatched-dir
new-dir
file-name
)
(
make-pathname
:defaults
"/"
:device
(
pathname-device
new-dir
)
:directory
(
concatenate
'simple-vector
(
pathname-directory
new-dir
)
unmatched-dir
)
:directory
(
append
(
pathname-directory
new-dir
)
unmatched-dir
)
:name
file-name
))
...
...
@@ -318,19 +310,3 @@
(
values
file
:function
name
)
(
values
nil
:unknown-function
name
)))
(
error
"~S is not a function."
symbol
))))))
#|
;;; Using this version of MAYBE-TRANSLATE-DEFINITION-FILE makes everything
;;; portable. TRANSLATE-DEFINITION-FILE should be rewritten to simply do
;;; (merge-pathnames new-dir file-name).
;;; This older version does not match longer, more specific directory specs
;;; like the above one. This one only matches complete directory specs.
(defun maybe-translate-definition-file (file)
(let ((new-dir (getstring (directory-namestring file)
*definition-directory-translation-table*)))
(if new-dir
(values (make-array 0) new-dir (file-namestring file)))))
|#
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment