diff options
| author | Juanma Barranquero | 2007-06-08 20:07:10 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-08 20:07:10 +0000 |
| commit | 8b3ad112705f4c6e002c1808dbaf60001384f0fe (patch) | |
| tree | 5e84cfacdc5073a6ab6096d69b67df9628ffbb6d /src | |
| parent | e78bf986eb6dbabe55981757e77af35865859319 (diff) | |
| download | emacs-8b3ad112705f4c6e002c1808dbaf60001384f0fe.tar.gz emacs-8b3ad112705f4c6e002c1808dbaf60001384f0fe.zip | |
(Fx_get_atom_name): Use empty_unibyte_string.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xselect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c index 3fe109a5b85..17dc7c0e7d3 100644 --- a/src/xselect.c +++ b/src/xselect.c | |||
| @@ -2678,7 +2678,7 @@ If the value is 0 or the atom is not known, return the empty string. */) | |||
| 2678 | ret = make_string (name, strlen (name)); | 2678 | ret = make_string (name, strlen (name)); |
| 2679 | 2679 | ||
| 2680 | if (atom && name) XFree (name); | 2680 | if (atom && name) XFree (name); |
| 2681 | if (NILP (ret)) ret = make_string ("", 0); | 2681 | if (NILP (ret)) ret = empty_unibyte_string; |
| 2682 | 2682 | ||
| 2683 | UNBLOCK_INPUT; | 2683 | UNBLOCK_INPUT; |
| 2684 | 2684 | ||