diff options
| author | Richard M. Stallman | 1995-04-06 08:42:37 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-06 08:42:37 +0000 |
| commit | 64fd98a95e3e320d7636d12d31eeb23e21c2de57 (patch) | |
| tree | 5d0463cff12b58318200f6f6c9360ae8c464e047 | |
| parent | d82767682a0b7d0a896dcf4ab29b68934a46de9d (diff) | |
| download | emacs-64fd98a95e3e320d7636d12d31eeb23e21c2de57.tar.gz emacs-64fd98a95e3e320d7636d12d31eeb23e21c2de57.zip | |
(ispell-menu-map-needed): Delete test for menu-bar feature.
| -rw-r--r-- | lisp/textmodes/ispell.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 13c62468f62..cd85f19f3b3 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el | |||
| @@ -540,8 +540,11 @@ language.aff file \(e.g., english.aff\).") | |||
| 540 | ;;;###autoload | 540 | ;;;###autoload |
| 541 | (defconst ispell-menu-map-needed ; make sure this is not Lucid Emacs | 541 | (defconst ispell-menu-map-needed ; make sure this is not Lucid Emacs |
| 542 | (and (not ispell-menu-map) | 542 | (and (not ispell-menu-map) |
| 543 | ;; make sure this isn't Lucid Emacs | 543 | ;;; This is commented out because it fails in Emacs. |
| 544 | (featurep 'menu-bar) (string-lessp "19" emacs-version))) | 544 | ;;; due to the fact that menu-bar is loaded much later than loaddefs. |
| 545 | ;;; ;; make sure this isn't Lucid Emacs | ||
| 546 | ;;; (featurep 'menu-bar) | ||
| 547 | (string-lessp "19" emacs-version))) | ||
| 545 | 548 | ||
| 546 | 549 | ||
| 547 | ;;; setup dictionary | 550 | ;;; setup dictionary |