diff options
| author | Jim Blandy <jimb@redhat.com> | 1993-02-22 14:38:43 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1993-02-22 14:38:43 +0000 |
| commit | f0250249f98c192849c21106e5e94ba8870f8ca7 (patch) | |
| tree | 065a504296bb7f136e09c264efae685eacc86102 /src | |
| parent | 8fc798e913d72becfe7d6e836f146d00a734d742 (diff) | |
| download | emacs-f0250249f98c192849c21106e5e94ba8870f8ca7.tar.gz | |
* editfns.c (Fmessage): Don't forget to return a value when
args[0] == Qnil.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 8c09c5554b2..e121796e1b4 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -1187,7 +1187,10 @@ minibuffer contents show.") Lisp_Object *args; { if (NILP (args[0])) - message (0); + { + message (0); + return Qnil; + } else { register Lisp_Object val; |
