# HG changeset patch # User Gerd Moellmann # Date 976548106 0 # Node ID 57d320641b6471c7d12db7a797d3ac2596ced120 # Parent 3fdc6106c2a1e6f6a94fa843e673510041791a6b (Fkey_description): If KEYS is an empty key sequence, return an empty string. diff -r 3fdc6106c2a1 -r 57d320641b64 src/keymap.c --- a/src/keymap.c Mon Dec 11 14:50:29 2000 +0000 +++ b/src/keymap.c Mon Dec 11 15:21:46 2000 +0000 @@ -1766,6 +1766,8 @@ else keys = wrong_type_argument (Qarrayp, keys); + if (len == 0) + return build_string (""); return Fconcat (len * 2 - 1, args); }