Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
emacs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
emacs
emacs
Commits
701b1ec2
Commit
701b1ec2
authored
Feb 23, 1999
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fdefconst): Doc fix.
parent
e6e9c516
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
9 deletions
+2
-9
src/eval.c
src/eval.c
+2
-9
No files found.
src/eval.c
View file @
701b1ec2
...
...
@@ -623,18 +623,11 @@ If INITVALUE is missing, SYMBOL's value is not set.")
DEFUN
(
"defconst"
,
Fdefconst
,
Sdefconst
,
2
,
UNEVALLED
,
0
,
"(defconst SYMBOL INITVALUE DOCSTRING): define SYMBOL as a constant variable.
\n
\
The intent is that
programs do not change this value, but users may
.
\n
\
The intent is that
nether programs nor users should ever change this value
.
\n
\
Always sets the value of SYMBOL to the result of evalling INITVALUE.
\n
\
If SYMBOL is buffer-local, its default value is what is set;
\n
\
buffer-local values are not affected.
\n
\
DOCSTRING is optional.
\n
\
If DOCSTRING starts with *, this variable is identified as a user option.
\n
\
This means that M-x set-variable and M-x edit-options recognize it.
\n\n
\
Note: do not use `defconst' for user options in libraries that are not
\n
\
normally loaded, since it is useful for users to be able to specify
\n
\
their own values for such variables before loading the library.
\n
\
Since `defconst' unconditionally assigns the variable,
\n
\
it would override the user's choice."
)
DOCSTRING is optional."
)
(
args
)
Lisp_Object
args
;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment