From: Glenn Morris Date: Tue, 11 Feb 2014 18:02:19 +0000 (-0500) Subject: * src/nsfns.m (ns_display_info_for_name, Fx_open_connection): Doc fixes. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~28 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9a84bfd6813ca38b8402e4368dcc76e857716cd9;p=emacs.git * src/nsfns.m (ns_display_info_for_name, Fx_open_connection): Doc fixes. Replace refs to "OpenStep" in messages. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5583e1a7b69..f0f437d9cdd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-02-11 Glenn Morris + + * nsfns.m (ns_display_info_for_name, Fx_open_connection): + Replace refs to "OpenStep" in messages. + 2014-02-10 Paul Eggert Avoid "." at end of error diagnostics. diff --git a/src/nsfns.m b/src/nsfns.m index 1dad651c7ae..8a3a8c9307a 100644 --- a/src/nsfns.m +++ b/src/nsfns.m @@ -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)); }