diff options
| author | Juanma Barranquero | 2007-06-08 20:11:56 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-08 20:11:56 +0000 |
| commit | b116683c2e4525853a2636735b0d2ceccac9b230 (patch) | |
| tree | 60ed7e3cc55f0de482f99b8932ba823c886f139d /src | |
| parent | fcd69a29888e9e578169961dae3eee350616fd1d (diff) | |
| download | emacs-b116683c2e4525853a2636735b0d2ceccac9b230.tar.gz emacs-b116683c2e4525853a2636735b0d2ceccac9b230.zip | |
(Fmapconcat): Use empty_unibyte_string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -3134,7 +3134,7 @@ SEQUENCE may be a list, a vector, a bool-vector, or a string. */) | |||
| 3134 | len = Flength (sequence); | 3134 | len = Flength (sequence); |
| 3135 | leni = XINT (len); | 3135 | leni = XINT (len); |
| 3136 | nargs = leni + leni - 1; | 3136 | nargs = leni + leni - 1; |
| 3137 | if (nargs < 0) return build_string (""); | 3137 | if (nargs < 0) return empty_unibyte_string; |
| 3138 | 3138 | ||
| 3139 | SAFE_ALLOCA_LISP (args, nargs); | 3139 | SAFE_ALLOCA_LISP (args, nargs); |
| 3140 | 3140 | ||