diff options
author | Tom Tromey <tromey@redhat.com> | 2013-08-27 12:33:04 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-08-27 12:33:04 -0600 |
commit | c44fedc6039bd96e908f5df25c5816abf7fc87e7 (patch) | |
tree | 5f3fcd272267dbbe69323eb00b05675f19a9f3c4 /src/data.c | |
parent | 6a64a7118d4b0c13789bbe69f2575dd9c1c88524 (diff) | |
download | emacs-c44fedc6039bd96e908f5df25c5816abf7fc87e7.tar.gz |
fix style of threadp, mutexp, and condition-variable-p
Diffstat (limited to 'src/data.c')
-rw-r--r-- | src/data.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/data.c b/src/data.c index 95cbd471d33..3763dc8adc8 100644 --- a/src/data.c +++ b/src/data.c @@ -547,8 +547,7 @@ DEFUN ("threadp", Fthreadp, Sthreadp, 1, 1, 0, { if (THREADP (object)) return Qt; - else - return Qnil; + return Qnil; } DEFUN ("mutexp", Fmutexp, Smutexp, 1, 1, 0, @@ -557,8 +556,7 @@ DEFUN ("mutexp", Fmutexp, Smutexp, 1, 1, 0, { if (MUTEXP (object)) return Qt; - else - return Qnil; + return Qnil; } DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p, @@ -568,8 +566,7 @@ DEFUN ("condition-variable-p", Fcondition_variable_p, Scondition_variable_p, { if (CONDVARP (object)) return Qt; - else - return Qnil; + return Qnil; } /* Extract and set components of lists. */ |