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
Open sidebar
emacs
emacs
Commits
54f696ea
Commit
54f696ea
authored
Oct 18, 1999
by
Dave Love
Browse files
(Fdocumentation_property): Gcpro `tem'.
parent
39c76d3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/doc.c
src/doc.c
+7
-1
No files found.
src/doc.c
View file @
54f696ea
...
...
@@ -400,7 +400,13 @@ translation.")
else
if
(
CONSP
(
tem
))
tem
=
get_doc_string
(
tem
,
0
,
0
);
if
(
NILP
(
raw
)
&&
STRINGP
(
tem
))
return
Fsubstitute_command_keys
(
tem
);
{
struct
gcpro
gcpro1
;
GCPRO1
(
tem
);
return
Fsubstitute_command_keys
(
tem
);
UNGCPRO
;
}
return
tem
;
}
...
...
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