diff options
| author | Richard M. Stallman | 2002-07-23 19:08:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-07-23 19:08:44 +0000 |
| commit | 6076e561e62135fa3d6fda9d1b11a558e0db13cd (patch) | |
| tree | f96b12be89e4540bce46acac3618d709ae9b98de /src/editfns.c | |
| parent | 5ef080214c114873b71d98b482a0acf0468fac07 (diff) | |
| download | emacs-6076e561e62135fa3d6fda9d1b11a558e0db13cd.tar.gz emacs-6076e561e62135fa3d6fda9d1b11a558e0db13cd.zip | |
(Fmessage): Treat "" like nil.
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c index 2244668649e..e8b12d76a3c 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2918,7 +2918,9 @@ usage: (message STRING &rest ARGS) */) | |||
| 2918 | int nargs; | 2918 | int nargs; |
| 2919 | Lisp_Object *args; | 2919 | Lisp_Object *args; |
| 2920 | { | 2920 | { |
| 2921 | if (NILP (args[0])) | 2921 | if (NILP (args[0]) |
| 2922 | || (STRINGP (args[0]) | ||
| 2923 | && SBYTES (args[0]) == 0)) | ||
| 2922 | { | 2924 | { |
| 2923 | message (0); | 2925 | message (0); |
| 2924 | return Qnil; | 2926 | return Qnil; |