From: Juanma Barranquero Date: Fri, 8 Jun 2007 20:07:10 +0000 (+0000) Subject: (Fx_get_atom_name): Use empty_unibyte_string. X-Git-Tag: emacs-pretest-23.0.90~12391 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8b3ad112705f4c6e002c1808dbaf60001384f0fe;p=emacs.git (Fx_get_atom_name): Use empty_unibyte_string. --- 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. */) ret = make_string (name, strlen (name)); if (atom && name) XFree (name); - if (NILP (ret)) ret = make_string ("", 0); + if (NILP (ret)) ret = empty_unibyte_string; UNBLOCK_INPUT;