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
dae36123
Commit
dae36123
authored
Aug 05, 1995
by
Richard M. Stallman
Browse files
(Fdisplay_completion_list): gcpro elt.
parent
5e887863
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
src/minibuf.c
src/minibuf.c
+7
-4
No files found.
src/minibuf.c
View file @
dae36123
...
...
@@ -1479,16 +1479,19 @@ It can find the completion buffer in `standard-output'.")
(
completions
)
Lisp_Object
completions
;
{
register
Lisp_Object
tail
,
elt
;
Lisp_Object
tail
,
elt
;
register
int
i
;
int
column
=
0
;
struct
gcpro
gcpro1
;
struct
gcpro
gcpro1
,
gcpro2
;
struct
buffer
*
old
=
current_buffer
;
int
first
=
1
;
/* Note that (when it matters) every variable
points to a non-string that is pointed to by COMPLETIONS. */
GCPRO1
(
completions
);
points to a non-string that is pointed to by COMPLETIONS,
except for ELT. ELT can be pointing to a string
when terpri or Findent_to calls a change hook. */
elt
=
Qnil
;
GCPRO2
(
completions
,
elt
);
if
(
BUFFERP
(
Vstandard_output
))
set_buffer_internal
(
XBUFFER
(
Vstandard_output
));
...
...
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