diff options
| -rw-r--r-- | lisp/menu-bar.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index e67fb70eede..0b0e694020b 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el | |||
| @@ -227,7 +227,8 @@ turn off menu bars; otherwise, turn on menu bars." | |||
| 227 | (setq frames (cdr frames))))) | 227 | (setq frames (cdr frames))))) |
| 228 | 228 | ||
| 229 | ;; Make frames created from now on have a menu bar. | 229 | ;; Make frames created from now on have a menu bar. |
| 230 | (menu-bar-mode t) | 230 | (if window-system |
| 231 | (menu-bar-mode t)) | ||
| 231 | 232 | ||
| 232 | (provide 'menu-bar) | 233 | (provide 'menu-bar) |
| 233 | 234 | ||