1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

* scroll.c (CHECK_BOUNDS): Renamed from CHECK.

* emacs.c (main): Fix sense of no-loadup test.
This commit is contained in:
Ken Raeburn 2000-03-29 23:24:14 +00:00
parent e0b8c689e2
commit b96f9fb741
3 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2000-03-29 Ken Raeburn <raeburn@gnu.org>
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
* emacs.c (main): Fix sense of no-loadup test.
* config.in (ENABLE_CHECKING): Undef.
* lisp.h (struct interval): Replace "parent" field with a union of

View File

@ -1179,7 +1179,7 @@ main (argc, argv, envp)
}
no_loadup
= !argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
= argmatch (argv, argc, "-nl", "--no-loadup", 6, NULL, &skip_args);
#ifdef HAVE_X_WINDOWS

View File

@ -269,7 +269,7 @@ do_scrolling (current_matrix, matrix, window_size, unchanged_at_top)
for (k = 0; k < window_size; ++k)
copy_from[k] = -1;
#define CHECK \
#define CHECK_BOUNDS \
do \
{ \
int k; \
@ -326,7 +326,7 @@ do_scrolling (current_matrix, matrix, window_size, unchanged_at_top)
retained_p[j] = 1;
#if GLYPH_DEBUG
CHECK;
CHECK_BOUNDS;
#endif
}
}