Fix grammar in lossage message
[sbcl.git] / src / code / early-constants.lisp
blob0c66b8c7c9419ef40cf73391ad8c5379423a7790
1 ;;;; This software is part of the SBCL system. See the README file for
2 ;;;; more information.
3 ;;;;
4 ;;;; This software is derived from the CMU CL system, which was
5 ;;;; written at Carnegie Mellon University and released into the
6 ;;;; public domain. The software is in the public domain and is
7 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
8 ;;;; files for more information.
10 (in-package "SB!IMPL")
12 (defconstant-eqx sb!xc:lambda-list-keywords
13 '(&allow-other-keys
14 &aux
15 &body
16 &environment
17 &key
18 &more
19 &optional
20 &rest
21 &whole)
22 #'equal
23 "A list of symbols used as lambda list keywords in SBCL.")