788bab35e441850fe549b85f3d52629db19d85a4
[sbcl.git] / src / code / late-symbol.lisp
1 ;;;; more code to manipulate symbols
2 ;;;;
3 ;;;; Many of these definitions are trivial interpreter entries to
4 ;;;; functions open-coded by the compiler.
5
6 ;;;; This software is part of the SBCL system. See the README file for
7 ;;;; more information.
8 ;;;;
9 ;;;; This software is derived from the CMU CL system, which was
10 ;;;; written at Carnegie Mellon University and released into the
11 ;;;; public domain. The software is in the public domain and is
12 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
13 ;;;; files for more information.
14
15 (in-package "SB!IMPL")
16
17 (defun %set-symbol-value (symbol new-value)
18   (%primitive set symbol new-value))