projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9ca350
)
rename FOP-INTERN AUX-FOP-INTERN for clarity
author
Nikodemus Siivola
<nikodemus@random-state.net>
Fri, 9 Dec 2011 15:00:00 +0000
(17:00 +0200)
committer
Nikodemus Siivola
<nikodemus@random-state.net>
Fri, 9 Dec 2011 21:52:17 +0000
(23:52 +0200)
...so as not to confuse it with actual FOPs.
src/code/fop.lisp
patch
|
blob
|
history
diff --git
a/src/code/fop.lisp
b/src/code/fop.lisp
index
9f6d58b
..
e45704e
100644
(file)
--- a/
src/code/fop.lisp
+++ b/
src/code/fop.lisp
@@
-192,7
+192,7
@@
\f
;;;; fops for loading symbols
-(defun fop-intern (smallp package)
+(defun aux-fop-intern (smallp package)
(let ((size (if smallp
(read-byte-arg)
(read-word-arg))))
@@
-214,7
+214,7
@@
(macrolet ((def (name code smallp package-form)
`(define-fop (,name ,code)
- (fop-intern ,smallp ,package-form))))
+ (aux-fop-intern ,smallp ,package-form))))
(def fop-lisp-symbol-save 75 nil *cl-package*)
(def fop-lisp-small-symbol-save 76 t *cl-package*)