[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/textmodes/ispell.el
From: |
Juanma Barranquero |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/textmodes/ispell.el |
Date: |
Mon, 16 May 2005 07:29:12 -0400 |
Index: emacs/lisp/textmodes/ispell.el
diff -c emacs/lisp/textmodes/ispell.el:1.162
emacs/lisp/textmodes/ispell.el:1.163
*** emacs/lisp/textmodes/ispell.el:1.162 Sat May 7 16:04:39 2005
--- emacs/lisp/textmodes/ispell.el Mon May 16 11:29:12 2005
***************
*** 2296,2304 ****
(setq output (substring output (match-end 0))) ; skip over misspelling
(if (eq type ?#)
(setq count 0) ; no misses for type #
! (setq count (string-to-int output) ; get number of misses.
output (substring output (1+ (string-match " " output 1)))))
! (setq offset (string-to-int output))
(if (eq type ?#) ; No miss or guess list.
(setq output nil)
(setq output (substring output (1+ (string-match " " output 1)))))
--- 2296,2304 ----
(setq output (substring output (match-end 0))) ; skip over misspelling
(if (eq type ?#)
(setq count 0) ; no misses for type #
! (setq count (string-to-number output) ; get number of misses.
output (substring output (1+ (string-match " " output 1)))))
! (setq offset (string-to-number output))
(if (eq type ?#) ; No miss or guess list.
(setq output nil)
(setq output (substring output (1+ (string-match " " output 1)))))