diff options
| author | Paul Eggert | 2013-12-03 14:36:49 -0800 |
|---|---|---|
| committer | Paul Eggert | 2013-12-03 14:36:49 -0800 |
| commit | 5df474aaa900307b90d55434308c32c555314313 (patch) | |
| tree | bd95be90b49d93039720ad80484e13c85b61db28 /src/tparam.c | |
| parent | 2654ac09ccc5da6e2fe99e60291d4c6013958c3e (diff) | |
| download | emacs-5df474aaa900307b90d55434308c32c555314313.tar.gz emacs-5df474aaa900307b90d55434308c32c555314313.zip | |
Use bool for boolean.
* tparam.c (tparam1):
* undo.c (record_point, record_property_change):
Use bool for boolean, for local vars that are always true or false.
Diffstat (limited to 'src/tparam.c')
| -rw-r--r-- | src/tparam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tparam.c b/src/tparam.c index c3ecfb9e3a3..e97544d9234 100644 --- a/src/tparam.c +++ b/src/tparam.c | |||
| @@ -79,7 +79,7 @@ tparam1 (const char *string, char *outstring, int len, | |||
| 79 | register int tem; | 79 | register int tem; |
| 80 | int *old_argp = argp; /* can move */ | 80 | int *old_argp = argp; /* can move */ |
| 81 | int *fixed_argp = argp; /* never moves */ | 81 | int *fixed_argp = argp; /* never moves */ |
| 82 | int explicit_param_p = 0; /* set by %p */ | 82 | bool explicit_param_p = 0; /* set by %p */ |
| 83 | ptrdiff_t doleft = 0; | 83 | ptrdiff_t doleft = 0; |
| 84 | ptrdiff_t doup = 0; | 84 | ptrdiff_t doup = 0; |
| 85 | ptrdiff_t append_len = 0; | 85 | ptrdiff_t append_len = 0; |