aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak Goel2007-12-06 20:06:24 +0000
committerDeepak Goel2007-12-06 20:06:24 +0000
commitfeac787c793552e48bef42499fb264cc44a4a3a1 (patch)
tree7c07b206000d17e8ed7d53f926ea3fc359eff8ea
parentaf5370adb4887d65416f7792476ab47cd9ec92e7 (diff)
downloademacs-feac787c793552e48bef42499fb264cc44a4a3a1.tar.gz
emacs-feac787c793552e48bef42499fb264cc44a4a3a1.zip
Fix breakage of textmodes/ispell.el from last change.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/textmodes/ispell.el2
2 files changed, 2 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 9988d58b66b..6673c25a43c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,6 @@
12007-12-06 D. Goel <deego3@gmail.com> 12007-12-06 D. Goel <deego3@gmail.com>
2 2
3 * textmodes/ispell.el (ispell-process-line)
3 * vc.el (vc-update) 4 * vc.el (vc-update)
4 * ibuffer.el (ibuffer-current-buffer): Fix breakage from the 5 * ibuffer.el (ibuffer-current-buffer): Fix breakage from the
5 change below. 6 change below.
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el
index b4ee00ae031..7fb6aed139a 100644
--- a/lisp/textmodes/ispell.el
+++ b/lisp/textmodes/ispell.el
@@ -3063,7 +3063,7 @@ Returns the sum SHIFT due to changes in word replacements."
3063 ;; `query-replace' makes multiple corrections on the starting line. 3063 ;; `query-replace' makes multiple corrections on the starting line.
3064 (or (ispell-looking-at (car poss)) 3064 (or (ispell-looking-at (car poss))
3065 ;; This occurs due to filter pipe problems 3065 ;; This occurs due to filter pipe problems
3066 (error "%s" (concat "Ispell misalignment: word " 3066 (error (concat "Ispell misalignment: word "
3067 "`%s' point %d; probably incompatible versions") 3067 "`%s' point %d; probably incompatible versions")
3068 (car poss) (marker-position word-start))) 3068 (car poss) (marker-position word-start)))
3069 ;; ispell-cmd-loop can go recursive & change buffer 3069 ;; ispell-cmd-loop can go recursive & change buffer