]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve test of error message when Emacs cannot be suspended
authorEli Zaretskii <eliz@gnu.org>
Sat, 5 Aug 2017 09:00:31 +0000 (12:00 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 5 Aug 2017 09:00:31 +0000 (12:00 +0300)
* lisp/term/x-win.el (x-win-suspend-error):
* lisp/term/ns-win.el (ns-suspend-error): Improve the error
message.  (Bug#27901)

lisp/term/ns-win.el
lisp/term/x-win.el

index 4df5f0abe21878a80a487be730fe88e124086b93..884836065501360786a01614d21d7629801c0b2c 100644 (file)
@@ -774,7 +774,7 @@ See the documentation of `create-fontset-from-fontset-spec' for the format.")
 (defun ns-suspend-error ()
   ;; Don't allow suspending if any of the frames are NS frames.
   (if (memq 'ns (mapcar 'window-system (frame-list)))
-      (error "Cannot suspend Emacs while running under NS")))
+      (error "Cannot suspend Emacs while an NS GUI frame exists")))
 
 
 ;; Set some options to be as Nextstep-like as possible.
index 532d0395cf4806062b04c3b07de74bf1a53418b2..dd42dda106f3bf828210b33282ec559fa31a9d19 100644 (file)
@@ -1182,7 +1182,7 @@ as returned by `x-server-vendor'."
 This returns an error if any Emacs frames are X frames."
   ;; Don't allow suspending if any of the frames are X frames.
   (if (memq 'x (mapcar #'window-system (frame-list)))
-      (error "Cannot suspend Emacs while running under X")))
+      (error "Cannot suspend Emacs while an X GUI frame exists")))
 
 (defvar x-initialized nil
   "Non-nil if the X window system has been initialized.")