* menu-bar.el (menu-bar-showhide-menu): Added speedbar.
(menu-bar-tools-menu): Removed speedbar.
* textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
and `flyspell-mode' entries.
* textmodes/flyspell.el (flyspell): Add to ispell group.
a menu-item to toggle displaying of current date and time, current line
and column number in the mode-line.
+** Speedbar has moved from the "Tools" top level menu to "Show/Hide".
+
** Emacs can now indicate in the mode-line the presence of new e-mails in
directory in addition to file. See the documentation of the user option
`display-time-mail-directory'.
+2002-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
+
+ * menu-bar.el (menu-bar-showhide-menu): Added speedbar.
+ (menu-bar-tools-menu): Removed speedbar.
+
+ * textmodes/ispell.el (ispell-menu-map): Added `customize-ispell'
+ and `flyspell-mode' entries.
+
+ * textmodes/flyspell.el (flyspell): Add to ispell group.
+
2002-02-17 Kai Gro\e,A_\e(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
* emacs-lisp/lisp.el (mark-sexp): Don't leave multiple marks when
(define-key menu-bar-showhide-menu [datetime-separator]
'("--"))
+(define-key menu-bar-showhide-menu [showhide-speedbar]
+ '(menu-item "Speedbar" speedbar-frame-mode
+ :help "Display speedbar"
+ :button (:toggle
+ . (and (boundp 'speedbar-frame)
+ (frame-live-p (symbol-value 'speedbar-frame))
+ (frame-visible-p
+ (symbol-value 'speedbar-frame))))))
+
(defvar menu-bar-showhide-scroll-bar-menu (make-sparse-keymap "Scroll-bar"))
(define-key menu-bar-showhide-scroll-bar-menu [right]
:help "Invoke the Emacs built-in scientific calculator"))
(define-key menu-bar-tools-menu [calendar]
'(menu-item "Display Calendar" calendar))
-(define-key menu-bar-tools-menu [speedbar]
- '(menu-item "Display Speedbar" speedbar-frame-mode))
(define-key menu-bar-tools-menu [separator-net]
'("--"))
"Spell checking on the fly."
:tag "FlySpell"
:prefix "flyspell-"
+ :group 'ispell
:group 'processes)
;*---------------------------------------------------------------------*/
;;; ispell.el --- interface to International Ispell Versions 3.1 and 3.2
-;; Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+;; Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
;; Author: Ken Stevens <k.stevens@ieee.org>
;; Maintainer: Ken Stevens <k.stevens@ieee.org>
'(menu-item "Save Dictionary"
(lambda () (interactive) (ispell-pdict-save t t))
:help "Save personal dictionary"))
+ (define-key ispell-menu-map [ispell-customize]
+ '(menu-item "Customize..."
+ (lambda () (interactive) (customize-group 'ispell))
+ :help "Customize spell checking options"))
(define-key ispell-menu-map [ispell-help]
;; use (x-popup-menu last-nonmenu-event(list "" ispell-help-list)) ?
'(menu-item "Help"
(lambda () (interactive) (describe-function 'ispell-help))
:help "Show standard Ispell keybindings and commands"))
+ (define-key ispell-menu-map [flyspell-mode]
+ '(menu-item "Automatic spell checking (Flyspell)"
+ flyspell-mode
+ :help "Check spelling while you edit the text"
+ :button (:toggle . flyspell-mode)))
(define-key ispell-menu-map [ispell-complete-word]
'(menu-item "Complete Word" ispell-complete-word
:help "Complete word at cursor using dictionary"))