]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-tools-menu): Don't define gnus entry if no network support.
authorRichard M. Stallman <rms@gnu.org>
Tue, 18 Jul 1995 20:51:00 +0000 (20:51 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 18 Jul 1995 20:51:00 +0000 (20:51 +0000)
lisp/menu-bar.el

index 56903cd6c27680a42bfe4e00d6c64cf52f2159d7..ae6e07095f21e0e527519dbcfa2f24d8eee22a8e 100644 (file)
@@ -53,7 +53,8 @@
 
 (define-key menu-bar-tools-menu [calendar] '("Display Calendar" . calendar))
 (define-key menu-bar-tools-menu [rmail] '("Read Mail" . rmail))
-(define-key menu-bar-tools-menu [gnus] '("Read Net News" . gnus))
+(if (fboundp 'open-network-stream)
+    (define-key menu-bar-tools-menu [gnus] '("Read Net News" . gnus)))
 
 (define-key menu-bar-tools-menu [separator-vc]
   '("--"))