* emacs.c (main): Fix sense of no-loadup test.
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
}
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
for (k = 0; k < window_size; ++k)
copy_from[k] = -1;
-#define CHECK \
+#define CHECK_BOUNDS \
do \
{ \
int k; \
retained_p[j] = 1;
#if GLYPH_DEBUG
- CHECK;
+ CHECK_BOUNDS;
#endif
}
}