]> git.eshelyaron.com Git - emacs.git/commitdiff
(ispell-menu-map): Order menu items by size: buffer > region > word.
authorKarl Heuer <kwzh@gnu.org>
Sat, 17 Sep 1994 00:28:47 +0000 (00:28 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 17 Sep 1994 00:28:47 +0000 (00:28 +0000)
lisp/textmodes/ispell.el
lisp/textmodes/ispell4.el

index 2325998529c77fcab93d662ecf85d18abe4bc5a4..c1bf5e52709ca8397b0b90a5cac2bf228a2a003f 100644 (file)
@@ -530,10 +530,10 @@ language.aff file \(e.g., english.aff\).")
     (progn
       (define-key ispell-menu-map [ispell-continue]
        '("Continue Check" . ispell-continue))
-      (define-key ispell-menu-map [ispell-region]
-       '("Check Region" . ispell-region))
       (define-key ispell-menu-map [ispell-word]
        '("Check Word" . ispell-word))
+      (define-key ispell-menu-map [ispell-region]
+       '("Check Region" . ispell-region))
       (define-key ispell-menu-map [ispell-buffer]
        '("Check Buffer" . ispell-buffer))))
 
index b57917909a81b1efca59c55cb358fd9ebe1eacc8..3e87b7c732216419eb9fe372e2f71098d159bf6a 100644 (file)
@@ -234,15 +234,15 @@ that have not already been dumped will be lost."
 (define-key ispell-menu-map [ispell-message]
   '("Check Message" . ispell-message))
 
+(define-key ispell-menu-map [ispell-word]
+  '("Check Word" . ispell-word))
+
 (define-key ispell-menu-map [ispell-region]
   '("Check Region" . ispell-region))
 
 (define-key ispell-menu-map [ispell-buffer]
   '("Check Buffer" . ispell))
 
-(define-key ispell-menu-map [ispell-word]
-  '("Check Word" . ispell-word))
-
 ;;;###autoload
 (defun ispell (&optional buf start end)
   "Run Ispell over current buffer's visited file.