Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
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
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
Hugo Ishimaru
asdf
Commits
6d4409d6
Commit
6d4409d6
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Have output-translations use the recently improved ensure-function for function designators.
Fixes lp#1207005.
parent
c819bb83
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
output-translations.lisp
+1
-4
1 addition, 4 deletions
output-translations.lisp
test/test-utilities.script
+2
-4
2 additions, 4 deletions
test/test-utilities.script
uiop/configuration.lisp
+1
-5
1 addition, 5 deletions
uiop/configuration.lisp
with
4 additions
and
13 deletions
output-translations.lisp
+
1
−
4
View file @
6d4409d6
...
...
@@ -197,10 +197,7 @@ and the order is by decreasing length of namestring of the source pathname.")
(
cond
((
location-function-p
dst
)
(
funcall
collect
(
list
trusrc
(
if
(
symbolp
(
second
dst
))
(
fdefinition
(
second
dst
))
(
eval
(
second
dst
))))))
(
list
trusrc
(
ensure-function
(
second
dst
)))))
((
eq
dst
t
)
(
funcall
collect
(
list
trusrc
t
)))
(
t
...
...
This diff is collapsed.
Click to expand it.
test/test-utilities.script
+
2
−
4
View file @
6d4409d6
...
...
@@ -61,10 +61,8 @@
(declare (ignore absolute-source))
path))
(function previous-isnt-keyword)
(:function f too many arguments)
(:function (:lambda isnt lambda))
(:function (lambda (too many args) blah))))
'(t t nil nil nil nil))
(:function f too many arguments)))
'(t t nil nil))
(initialize-source-registry '())
...
...
This diff is collapsed.
Click to expand it.
uiop/configuration.lisp
+
1
−
5
View file @
6d4409d6
...
...
@@ -274,11 +274,7 @@ directive.")
(
defun
location-function-p
(
x
)
(
and
(
length=n-p
x
2
)
(
eq
(
car
x
)
:function
)
(
or
(
symbolp
(
cadr
x
))
(
and
(
consp
(
cadr
x
))
(
eq
(
caadr
x
)
'lambda
)
(
length=n-p
(
cadadr
x
)
2
)))))
(
eq
(
car
x
)
:function
)))
(
defvar
*clear-configuration-hook*
'
())
...
...
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