Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Register
  • Sign in
  • A asdf
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributor statistics
    • Graph
    • Compare revisions
  • Issues 63
    • Issues 63
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 21
    • Merge requests 21
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • asdf
  • asdf
  • Merge requests
  • !114

Modify the description of locate-system according to the current behaviour

  • Review changes

  • Download
  • Email patches
  • Plain diff
Open Hugo Ishimaru requested to merge hishimaru/asdf:man-fix into master Oct 22, 2018
  • Overview 29
  • Commits 3
  • Pipelines 0
  • Changes 1
  1. Now this function returns six values.
  2. It states that this function will not load the system definition though it seems to me that the loading occurs in some cases: e.g. the case involving primary system.

I mean the following behaviour:

;; ~/common-lisp/bar.asd
(defsystem "bar")
(defsystem "bar/test")
CL-USER> (asdf:locate-system :bar)  ;; the system definition won't be loaded
T
NIL
#P"C:/Users/hugo/common-lisp/bar.asd"
NIL
NIL
NIL
CL-USER> (asdf:locate-system :bar)
T
NIL
#P"C:/Users/hugo/common-lisp/bar.asd"
NIL
NIL
NIL
CL-USER> (asdf:locate-system :bar/test) ;; the system definition will be loaded
T
NIL
#P"C:/Users/hugo/common-lisp/bar.asd"
NIL
NIL
NIL
CL-USER> (asdf:locate-system :bar/test)
T
NIL
#P"C:/Users/hugo/common-lisp/bar.asd"
#<ASDF/SYSTEM:SYSTEM "bar/test">
3749197495
#<ASDF/SYSTEM:SYSTEM "bar">

I hope it's not my rudimentary misunderstanding.

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: man-fix