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
f0cb4a60
Commit
f0cb4a60
authored
Mar 14, 2011
by
Paul Eggert
Browse files
* insdel.c (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
parent
85876d07
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
src/ChangeLog
src/ChangeLog
+1
-0
src/insdel.c
src/insdel.c
+6
-3
No files found.
src/ChangeLog
View file @
f0cb4a60
...
...
@@ -2,6 +2,7 @@
* insdel.c (check_markers, make_gap_larger, make_gap_smaller):
(reset_var_on_error, Fcombine_after_change_execute_1): Now static.
(CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
* filelock.c (within_one_second): Now static.
(lock_file_1): Rename local to avoid shadowing.
src/insdel.c
View file @
f0cb4a60
...
...
@@ -70,9 +70,12 @@ Lisp_Object combine_after_change_buffer;
Lisp_Object
Qinhibit_modification_hooks
;
#define CHECK_MARKERS() \
if (check_markers_debug_flag) \
check_markers (); \
else
do \
{ \
if (check_markers_debug_flag) \
check_markers (); \
} \
while (0)
static
void
check_markers
(
void
)
...
...
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