diff options
| author | Richard M. Stallman | 1997-01-17 07:01:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-01-17 07:01:51 +0000 |
| commit | 606538987c859775a2f702efbbdf459cbad24da9 (patch) | |
| tree | 2521a667507a49f11c1509071c34dea610493c36 | |
| parent | 31e4e97b5b01a2f37c1d3a4f6241d954dac34de4 (diff) | |
| download | emacs-606538987c859775a2f702efbbdf459cbad24da9.tar.gz emacs-606538987c859775a2f702efbbdf459cbad24da9.zip | |
Clean up parentheses.
| -rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 9ff24cba8f3..af1c55318c4 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -814,7 +814,7 @@ If you want them to stand for years in this century, you must do that yourself." | |||
| 814 | { | 814 | { |
| 815 | time_t time; | 815 | time_t time; |
| 816 | struct tm tm; | 816 | struct tm tm; |
| 817 | Lisp_Object zone = (nargs > 6)? args[nargs - 1] : Qnil; | 817 | Lisp_Object zone = (nargs > 6 ? args[nargs - 1] : Qnil); |
| 818 | 818 | ||
| 819 | CHECK_NUMBER (args[0], 0); /* second */ | 819 | CHECK_NUMBER (args[0], 0); /* second */ |
| 820 | CHECK_NUMBER (args[1], 1); /* minute */ | 820 | CHECK_NUMBER (args[1], 1); /* minute */ |