diff options
| author | Deepak Goel | 2007-12-06 20:06:24 +0000 |
|---|---|---|
| committer | Deepak Goel | 2007-12-06 20:06:24 +0000 |
| commit | feac787c793552e48bef42499fb264cc44a4a3a1 (patch) | |
| tree | 7c07b206000d17e8ed7d53f926ea3fc359eff8ea | |
| parent | af5370adb4887d65416f7792476ab47cd9ec92e7 (diff) | |
| download | emacs-feac787c793552e48bef42499fb264cc44a4a3a1.tar.gz emacs-feac787c793552e48bef42499fb264cc44a4a3a1.zip | |
Fix breakage of textmodes/ispell.el from last change.
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/textmodes/ispell.el | 2 |
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 @@ | |||
| 1 | 2007-12-06 D. Goel <deego3@gmail.com> | 1 | 2007-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 |