diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/nsfns.m | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5583e1a7b69..f0f437d9cdd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-02-11 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * nsfns.m (ns_display_info_for_name, Fx_open_connection): | ||
| 4 | Replace refs to "OpenStep" in messages. | ||
| 5 | |||
| 1 | 2014-02-10 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2014-02-10 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Avoid "." at end of error diagnostics. | 8 | 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) | |||
| 183 | if (!NILP (Fstring_equal (XCAR (dpyinfo->name_list_element), name))) | 183 | if (!NILP (Fstring_equal (XCAR (dpyinfo->name_list_element), name))) |
| 184 | return dpyinfo; | 184 | return dpyinfo; |
| 185 | 185 | ||
| 186 | error ("Emacs for OpenStep does not yet support multi-display"); | 186 | error ("Emacs for Nextstep does not yet support multi-display."); |
| 187 | 187 | ||
| 188 | Fx_open_connection (name, Qnil, Qnil); | 188 | Fx_open_connection (name, Qnil, Qnil); |
| 189 | dpyinfo = x_display_list; | 189 | dpyinfo = x_display_list; |
| 190 | 190 | ||
| 191 | if (dpyinfo == 0) | 191 | if (dpyinfo == 0) |
| 192 | error ("OpenStep on %s not responding.\n", SDATA (name)); | 192 | error ("Display on %s not responding.\n", SDATA (name)); |
| 193 | 193 | ||
| 194 | return dpyinfo; | 194 | return dpyinfo; |
| 195 | } | 195 | } |
| @@ -1817,10 +1817,10 @@ terminate Emacs if we can't open the connection. | |||
| 1817 | if (dpyinfo == 0) | 1817 | if (dpyinfo == 0) |
| 1818 | { | 1818 | { |
| 1819 | if (!NILP (must_succeed)) | 1819 | if (!NILP (must_succeed)) |
| 1820 | fatal ("OpenStep on %s not responding.\n", | 1820 | fatal ("Display on %s not responding.\n", |
| 1821 | SSDATA (display)); | 1821 | SSDATA (display)); |
| 1822 | else | 1822 | else |
| 1823 | error ("OpenStep on %s not responding.\n", | 1823 | error ("Display on %s not responding.\n", |
| 1824 | SSDATA (display)); | 1824 | SSDATA (display)); |
| 1825 | } | 1825 | } |
| 1826 | 1826 | ||