]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/nsfns.m (ns_display_info_for_name, Fx_open_connection): Doc fixes.
authorGlenn Morris <rgm@gnu.org>
Tue, 11 Feb 2014 18:02:19 +0000 (13:02 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 11 Feb 2014 18:02:19 +0000 (13:02 -0500)
Replace refs to "OpenStep" in messages.

src/ChangeLog
src/nsfns.m

index 5583e1a7b69556f517e8d4f966237a8821fd38f2..f0f437d9cddeee43f5387d7e23497286fac4ca78 100644 (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.
index 1dad651c7ae233bd19ca29a4b264e73761bbf208..8a3a8c9307a52d87b73204ef9d371b5d1d009415 100644 (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));
     }