Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
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
Container registry
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
b4df8200
Commit
b4df8200
authored
28 years ago
by
Fredrik Hübinette (Hubbe)
Browse files
Options
Downloads
Patches
Plain Diff
removed some unused code
Rev: lib/master.pike:1.40
parent
5ae23869
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
lib/master.pike
+0
-20
0 additions, 20 deletions
lib/master.pike
with
0 additions
and
20 deletions
lib/master.pike
+
0
−
20
View file @
b4df8200
...
...
@@ -233,18 +233,6 @@ class dirnode
}
};
class mergenode
{
mixed *modules;
void create(mixed * m) { modules=m; }
mixed `[](string index)
{
foreach(modules, mixed mod)
if(mixed ret=mod[index]) return ret;
return UNDEFINED;
}
};
object findmodule(string fullname)
{
mixed *stat;
...
...
@@ -264,14 +252,6 @@ object findmodule(string fullname)
}
#endif
#ifdef NOT_INSTALLED
/* Hack for pre-install testing */
if(mixed *stat=file_stat(fullname))
{
if(stat[1]==-2)
return findmodule(fullname+"/module");
}
#endif
return UNDEFINED;
}
...
...
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