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
4e6c9d9e
Commit
4e6c9d9e
authored
Nov 15, 1994
by
Karl Heuer
Browse files
(unlock_all_files): Use the new type-test macros.
parent
34ca5317
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
src/filelock.c
src/filelock.c
+1
-2
No files found.
src/filelock.c
View file @
4e6c9d9e
...
...
@@ -378,8 +378,7 @@ unlock_all_files ()
register
Lisp_Object
tail
;
register
struct
buffer
*
b
;
for
(
tail
=
Vbuffer_alist
;
XGCTYPE
(
tail
)
==
Lisp_Cons
;
tail
=
XCONS
(
tail
)
->
cdr
)
for
(
tail
=
Vbuffer_alist
;
GC_CONSP
(
tail
);
tail
=
XCONS
(
tail
)
->
cdr
)
{
b
=
XBUFFER
(
XCONS
(
XCONS
(
tail
)
->
car
)
->
cdr
);
if
(
STRINGP
(
b
->
filename
)
&&
b
->
save_modified
<
BUF_MODIFF
(
b
))
...
...
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