1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-26 09:51:31 -08:00

* src/nsfns.m (ns_display_info_for_name, Fx_open_connection): Doc fixes.

Replace refs to "OpenStep" in messages.
This commit is contained in:
Glenn Morris 2014-02-11 13:02:19 -05:00
parent fcd58a0299
commit 9a84bfd681
2 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2014-02-11 Glenn Morris <rgm@gnu.org>
* nsfns.m (ns_display_info_for_name, Fx_open_connection):
Replace refs to "OpenStep" in messages.
2014-02-10 Paul Eggert <eggert@cs.ucla.edu>
Avoid "." at end of error diagnostics.

View file

@ -183,13 +183,13 @@ ns_display_info_for_name (Lisp_Object name)
if (!NILP (Fstring_equal (XCAR (dpyinfo->name_list_element), name)))
return dpyinfo;
error ("Emacs for OpenStep does not yet support multi-display");
error ("Emacs for Nextstep does not yet support multi-display.");
Fx_open_connection (name, Qnil, Qnil);
dpyinfo = x_display_list;
if (dpyinfo == 0)
error ("OpenStep on %s not responding.\n", SDATA (name));
error ("Display on %s not responding.\n", SDATA (name));
return dpyinfo;
}
@ -1817,10 +1817,10 @@ terminate Emacs if we can't open the connection.
if (dpyinfo == 0)
{
if (!NILP (must_succeed))
fatal ("OpenStep on %s not responding.\n",
fatal ("Display on %s not responding.\n",
SSDATA (display));
else
error ("OpenStep on %s not responding.\n",
error ("Display on %s not responding.\n",
SSDATA (display));
}