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
9dd0d7a0
Commit
9dd0d7a0
authored
32 years ago
by
wlott
Browse files
Options
Downloads
Patches
Plain Diff
Changed %function-header-mumble to %function-mumble.
parent
e72357cc
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
code/describe.lisp
+4
-4
4 additions, 4 deletions
code/describe.lisp
code/fdefinition.lisp
+2
-2
2 additions, 2 deletions
code/fdefinition.lisp
code/kernel.lisp
+8
-8
8 additions, 8 deletions
code/kernel.lisp
code/tty-inspect.lisp
+2
-2
2 additions, 2 deletions
code/tty-inspect.lisp
with
16 additions
and
16 deletions
code/describe.lisp
+
4
−
4
View file @
9dd0d7a0
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.2
0
1992/
05/07 08:52:52
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.2
1
1992/
12/13 16:04:19
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -301,7 +301,7 @@
...
@@ -301,7 +301,7 @@
;;; guts.
;;; guts.
;;;
;;;
(
defun
describe-function-compiled
(
x
kind
name
)
(
defun
describe-function-compiled
(
x
kind
name
)
(
let
((
args
(
%function-
header-
arglist
x
)))
(
let
((
args
(
%function-arglist
x
)))
(
format
t
"~&~@(~@[~A ~]arguments:~%~)"
kind
)
(
format
t
"~&~@(~@[~A ~]arguments:~%~)"
kind
)
(
cond
((
not
args
)
(
cond
((
not
args
)
(
format
t
" There is no argument information available."
))
(
format
t
" There is no argument information available."
))
...
@@ -312,10 +312,10 @@
...
@@ -312,10 +312,10 @@
(
indenting-further
*standard-output*
2
(
indenting-further
*standard-output*
2
(
write-string
args
)))))
(
write-string
args
)))))
(
let
((
name
(
or
name
(
%function-
header-
name
x
))))
(
let
((
name
(
or
name
(
%function-name
x
))))
(
desc-doc
name
'function
kind
)
(
desc-doc
name
'function
kind
)
(
unless
(
eq
kind
:macro
)
(
unless
(
eq
kind
:macro
)
(
describe-function-name
name
(
%function-
header-
type
x
))))
(
describe-function-name
name
(
%function-type
x
))))
(
print-compiled-from
x
))
(
print-compiled-from
x
))
...
...
This diff is collapsed.
Click to expand it.
code/fdefinition.lisp
+
2
−
2
View file @
9dd0d7a0
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fdefinition.lisp,v 1.1
3
1992/
03/09 09:10:32
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fdefinition.lisp,v 1.1
4
1992/
12/13 16:04:28
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -143,7 +143,7 @@
...
@@ -143,7 +143,7 @@
(
defun
print-encapsulation-info
(
obj
str
n
)
(
defun
print-encapsulation-info
(
obj
str
n
)
(
declare
(
ignore
n
))
(
declare
(
ignore
n
))
(
format
str
"#<Encapsulation-Info Definition: ~S Type: ~S>"
(
format
str
"#<Encapsulation-Info Definition: ~S Type: ~S>"
(
%function-
header-
name
(
encapsulation-info-definition
obj
))
(
%function-name
(
encapsulation-info-definition
obj
))
(
encapsulation-info-type
obj
)))
(
encapsulation-info-type
obj
)))
...
...
This diff is collapsed.
Click to expand it.
code/kernel.lisp
+
8
−
8
View file @
9dd0d7a0
...
@@ -7,11 +7,11 @@
...
@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
8
1992/
04/21 04:23:03
wlott Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
9
1992/
12/13 16:04:30
wlott Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
8
1992/
04/21 04:23:03
wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/kernel.lisp,v 1.
9
1992/
12/13 16:04:30
wlott Exp $
;;;
;;;
(
in-package
"KERNEL"
)
(
in-package
"KERNEL"
)
...
@@ -68,17 +68,17 @@
...
@@ -68,17 +68,17 @@
(
defun
(
setf
function-subtype
)
(
type
function
)
(
defun
(
setf
function-subtype
)
(
type
function
)
(
setf
(
function-subtype
function
)
type
))
(
setf
(
function-subtype
function
)
type
))
(
defun
%function-
header-
arglist
(
func
)
(
defun
%function-arglist
(
func
)
"Extracts the arglist from the function header FUNC."
"Extracts the arglist from the function header FUNC."
(
%function-
header-
arglist
func
))
(
%function-arglist
func
))
(
defun
%function-
header-
name
(
func
)
(
defun
%function-name
(
func
)
"Extracts the name from the function header FUNC."
"Extracts the name from the function header FUNC."
(
%function-
header-
name
func
))
(
%function-name
func
))
(
defun
%function-
header-
type
(
func
)
(
defun
%function-type
(
func
)
"Extracts the type from the function header FUNC."
"Extracts the type from the function header FUNC."
(
%function-
header-
type
func
))
(
%function-type
func
))
(
defun
%closure-function
(
closure
)
(
defun
%closure-function
(
closure
)
"Extracts the function from CLOSURE."
"Extracts the function from CLOSURE."
...
...
This diff is collapsed.
Click to expand it.
code/tty-inspect.lisp
+
2
−
2
View file @
9dd0d7a0
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
;;;
(
ext:file-comment
(
ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.1
0
199
1/05/22 15:44:08 ram
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/tty-inspect.lisp,v 1.1
1
199
2/12/13 16:04:32 wlott
Exp $"
)
;;;
;;;
;;; **********************************************************************
;;; **********************************************************************
;;;
;;;
...
@@ -185,7 +185,7 @@
...
@@ -185,7 +185,7 @@
(
kernel:%closure-function
object
)
(
kernel:%closure-function
object
)
object
)))
object
)))
(
list
(
format
nil
"Function ~s.~@[~%Argument List: ~a~]."
object
(
list
(
format
nil
"Function ~s.~@[~%Argument List: ~a~]."
object
(
kernel:%function-
header-
arglist
object
)
(
kernel:%function-arglist
object
)
;; Defined from stuff used to be here. Someone took it out.
;; Defined from stuff used to be here. Someone took it out.
)
)
t
)))
t
)))
...
...
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