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
41d86b13
Commit
41d86b13
authored
Nov 16, 1994
by
Karl Heuer
Browse files
(Fdo_auto_save): Use the new type-test macros.
parent
35e5240a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/fileio.c
src/fileio.c
+1
-2
No files found.
src/fileio.c
View file @
41d86b13
...
...
@@ -3774,8 +3774,7 @@ Non-nil second argument means save only current buffer.")
autosave perfectly ordinary files because it couldn't handle some
ange-ftp'd file. */
for
(
do_handled_files
=
0
;
do_handled_files
<
2
;
do_handled_files
++
)
for
(
tail
=
Vbuffer_alist
;
XGCTYPE
(
tail
)
==
Lisp_Cons
;
tail
=
XCONS
(
tail
)
->
cdr
)
for
(
tail
=
Vbuffer_alist
;
GC_CONSP
(
tail
);
tail
=
XCONS
(
tail
)
->
cdr
)
{
buf
=
XCONS
(
XCONS
(
tail
)
->
car
)
->
cdr
;
b
=
XBUFFER
(
buf
);
...
...
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