projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b6da2f
)
Add RPLACA/D as functions.
author
Olof-Joachim Frahm
<olof@macrolet.net>
Tue, 3 Sep 2013 15:42:50 +0000
(17:42 +0200)
committer
Olof-Joachim Frahm
<olof@macrolet.net>
Tue, 15 Oct 2013 07:53:29 +0000
(09:53 +0200)
src/list.lisp
patch
|
blob
|
history
diff --git
a/src/list.lisp
b/src/list.lisp
index
b974cd0
..
58226f8
100644
(file)
--- a/
src/list.lisp
+++ b/
src/list.lisp
@@
-39,6
+39,12
@@
(defun cdr (x) (cdr x))
+(defun rplaca (cons x)
+ (rplaca cons x))
+
+(defun rplacd (cons x)
+ (rplacd cons x))
+
(defun first (x) (car x))
(defun second (x) (cadr x))
(defun third (x) (caddr x))