diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-23 01:27:08 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-08-23 01:27:08 -0700 |
commit | b1bb8011dbb71df0eae4d041dbf28621bc37e44c (patch) | |
tree | da0b99f975def059d7f1e6a69b6c0b7124bc4912 /src/atimer.h | |
parent | d1c0d176e8dc7e7e72d7e029b4c14d7dcc4eb9ec (diff) | |
download | emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.tar.gz emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.tar.bz2 emacs-b1bb8011dbb71df0eae4d041dbf28621bc37e44c.zip |
* atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
* atimer.h: Include <stdbool.h>.
Diffstat (limited to 'src/atimer.h')
-rw-r--r-- | src/atimer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/atimer.h b/src/atimer.h index 4282bab49ba..6d441d71641 100644 --- a/src/atimer.h +++ b/src/atimer.h @@ -20,6 +20,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #define EMACS_ATIMER_H #include "systime.h" /* for EMACS_TIME */ +#include <stdbool.h> /* Forward declaration. */ @@ -74,7 +75,7 @@ struct atimer *start_atimer (enum atimer_type, EMACS_TIME, void cancel_atimer (struct atimer *); void do_pending_atimers (void); void init_atimer (void); -void turn_on_atimers (int); +void turn_on_atimers (bool); void stop_other_atimers (struct atimer *); Lisp_Object unwind_stop_other_atimers (Lisp_Object); |