diff options
| author | Richard M. Stallman | 2005-01-21 00:32:36 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-01-21 00:32:36 +0000 |
| commit | 674a954a1deba3f9a5a382f2bfe4a0b48e71e204 (patch) | |
| tree | 9c256dc5ac3986d84e56dd942e745d7541ff4976 /src | |
| parent | 7f3e88596faedd51438f86487504ed6093a9a483 (diff) | |
| download | emacs-674a954a1deba3f9a5a382f2bfe4a0b48e71e204.tar.gz emacs-674a954a1deba3f9a5a382f2bfe4a0b48e71e204.zip | |
(Fmessage): If arg is "", return "" (as before).
Diffstat (limited to 'src')
| -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 a6cd2c0e16b..0587d66bb0f 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -3135,7 +3135,7 @@ usage: (message STRING &rest ARGS) */) | |||
| 3135 | && SBYTES (args[0]) == 0)) | 3135 | && SBYTES (args[0]) == 0)) |
| 3136 | { | 3136 | { |
| 3137 | message (0); | 3137 | message (0); |
| 3138 | return Qnil; | 3138 | return args[0]; |
| 3139 | } | 3139 | } |
| 3140 | else | 3140 | else |
| 3141 | { | 3141 | { |