comparison lispref/variables.texi @ 27808:cc4885ac4603

*** empty log message ***
author Richard M. Stallman <rms@gnu.org>
date Tue, 22 Feb 2000 19:48:55 +0000
parents 5b4130fa5ab6
children 0dca3aa6405a
comparison
equal deleted inserted replaced
27807:2999ff7760b6 27808:cc4885ac4603
120 (setq nil 500) 120 (setq nil 500)
121 @error{} Attempt to set constant symbol: nil 121 @error{} Attempt to set constant symbol: nil
122 @end group 122 @end group
123 @end example 123 @end example
124 124
125 @defvar keyword-symbols-constant-flag
126 If this variable is @code{nil}, you are allowed to set and bind symbols
127 whose names start with @samp{:} however you wish. This is to make it
128 possible to run old Lisp programs which do that.
129 @end defvar
130
131 @defun keywordp object 125 @defun keywordp object
132 @tindex keywordp 126 @tindex keywordp
133 function returns @code{t} if @var{object} is a symbol whose name 127 function returns @code{t} if @var{object} is a symbol whose name
134 starts with @samp{:}, interned in the standard obarray, and returns 128 starts with @samp{:}, interned in the standard obarray, and returns
135 @code{nil} otherwise. 129 @code{nil} otherwise.