In ispell-command-loop' don't use next-window'.
* textmodes/ispell.el (ispell-command-loop): Don't use `next-window'.
This commit is contained in:
parent
061f310c4a
commit
164cdfbf9e
2 changed files with 9 additions and 2 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2014-12-19 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* textmodes/ispell.el (ispell-command-loop): Don't use
|
||||
`next-window'.
|
||||
|
||||
2014-12-18 Sam Steingold <sds@gnu.org>
|
||||
|
||||
Keyboard interface (C-f10) to `mouse-buffer-menu' (C-down-mouse-1).
|
||||
|
|
|
|||
|
|
@ -2265,8 +2265,9 @@ Global `ispell-quit' set to start location to continue spell session."
|
|||
(sit-for 0))
|
||||
|
||||
;; Display choices for misspelled word.
|
||||
(setq textwin (selected-window))
|
||||
(ispell-show-choices)
|
||||
(select-window (setq textwin (next-window)))
|
||||
(select-window textwin)
|
||||
|
||||
;; highlight word, protecting current buffer status
|
||||
(unwind-protect
|
||||
|
|
@ -2408,8 +2409,9 @@ Global `ispell-quit' set to start location to continue spell session."
|
|||
count (ispell-int-char (1+ count))))
|
||||
(setq count (ispell-int-char
|
||||
(- count ?0 skipped))))
|
||||
(setq textwin (selected-window))
|
||||
(ispell-show-choices)
|
||||
(select-window (next-window)))))
|
||||
(select-window textwin))))
|
||||
(and (eq 'block ispell-highlight-p)
|
||||
(ispell-highlight-spelling-error start end nil
|
||||
'block))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue