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
512ca171
Commit
512ca171
authored
Oct 21, 2001
by
Miles Bader
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Vhelp_manyarg_func_alist): Variable removed.
(Fdocumentation): Don't use it. (syms_of_doc): Don't initialize it.
parent
a58d71cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
9 deletions
+1
-9
src/doc.c
src/doc.c
+1
-9
No files found.
src/doc.c
View file @
512ca171
...
...
@@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA. */
extern
char
*
index
P_
((
const
char
*
,
int
));
#endif
Lisp_Object
Vdoc_file_name
,
Vhelp_manyarg_func_alist
;
Lisp_Object
Vdoc_file_name
;
Lisp_Object
Qfunction_documentation
;
...
...
@@ -331,8 +331,6 @@ string is passed through `substitute-command-keys'.")
else
doc
=
get_doc_string
(
make_number
(
-
(
EMACS_INT
)
XSUBR
(
fun
)
->
doc
),
0
,
0
);
if
(
!
NILP
(
tem
=
Fassq
(
function
,
Vhelp_manyarg_func_alist
)))
doc
=
concat3
(
doc
,
build_string
(
"
\n
"
),
Fcdr
(
tem
));
}
else
if
(
COMPILEDP
(
fun
))
{
...
...
@@ -819,12 +817,6 @@ syms_of_doc ()
DEFVAR_LISP
(
"internal-doc-file-name"
,
&
Vdoc_file_name
,
"Name of file containing documentation strings of built-in symbols."
);
Vdoc_file_name
=
Qnil
;
DEFVAR_LISP
(
"help-manyarg-func-alist"
,
&
Vhelp_manyarg_func_alist
,
"Alist of primitive functions and descriptions of their arg lists.
\n
\
All special forms and primitives which effectively have &rest args
\n
\
should have an entry here so that `documentation' can provide their
\n
\
arg list."
);
Vhelp_manyarg_func_alist
=
Qnil
;
defsubr
(
&
Sdocumentation
);
defsubr
(
&
Sdocumentation_property
);
...
...
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