aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2006-07-17 21:00:08 +0000
committerRichard M. Stallman2006-07-17 21:00:08 +0000
commitb9e590fc9573a874e26203ddad566325b97dc2c3 (patch)
tree1c5ee1344c43547de89d9b9c899a83d6a99ba92c /src
parent5d12ff0bed31f22ca4e060ac3245cf424b88dc84 (diff)
downloademacs-b9e590fc9573a874e26203ddad566325b97dc2c3.tar.gz
emacs-b9e590fc9573a874e26203ddad566325b97dc2c3.zip
Fix previous change.
Diffstat (limited to 'src')
-rw-r--r--src/dispnew.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index a0dc95a2ba8..3cbd878bb13 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -6828,11 +6828,11 @@ For types not defined in VMS, use define emacs_term \"TYPE\".\n\
6828#else /* not VMS */ 6828#else /* not VMS */
6829 6829
6830#ifdef HAVE_WINDOW_SYSTEM 6830#ifdef HAVE_WINDOW_SYSTEM
6831 if (inhibit_window_system) 6831 if (! inhibit_window_system)
6832 fprintf (stderr, "Please set the environment variable TERM; see `tset'.\n"); 6832 fprintf (stderr, "Please set the environment variable DISPLAY or TERM (see `tset').\n");
6833 else 6833 else
6834#endif /* HAVE_WINDOW_SYSTEM */ 6834#endif /* HAVE_WINDOW_SYSTEM */
6835 fprintf (stderr, "Please set the environment variable DISPLAY or TERM (see `tset').\n"); 6835 fprintf (stderr, "Please set the environment variable TERM; see `tset'.\n");
6836#endif /* not VMS */ 6836#endif /* not VMS */
6837 exit (1); 6837 exit (1);
6838 } 6838 }