Use boolean literals for pagination_enabled

I noticed a couple of spots that used '0' rather than 'false' when
modifying pagination_enabled.  This patch cleans these up.
This commit is contained in:
Tom Tromey 2022-11-17 09:35:20 -07:00
parent 03acd4d854
commit 2f6831b806
2 changed files with 2 additions and 2 deletions

View file

@ -259,7 +259,7 @@ set_observer_mode (const char *args, int from_tty,
going out we leave it that way. */
if (observer_mode)
{
pagination_enabled = 0;
pagination_enabled = false;
non_stop = non_stop_1 = true;
}