1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
|
;;; ispell4.el --- this is the GNU EMACS interface to GNU ISPELL version 4.
;; Copyright (C) 1990, 1991, 1993 Free Software Foundation, Inc.
;; Keywords: wp
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;; Commentary:
;; This package provides a graceful interface to ispell, the GNU
;; spelling checker.
;;; Code:
(defvar ispell-have-new-look t
"Non-nil means use the `-r' option when running `look'.")
(defvar ispell-enable-tex-parser nil
"Non-nil enables experimental TeX parser in Ispell for TeX-mode buffers.")
(defvar ispell-process nil "The process running Ispell")
(defvar ispell-next-message nil
"An integer: where in `*ispell*' buffer to find next message from Ispell.")
(defvar ispell-command "ispell"
"Command for running Ispell.")
(defvar ispell-command-options nil
"*String (or list of strings) to pass to Ispell as command arguments.
You can specify your private dictionary via the -p <filename> option.
The -S option is always passed to Ispell as the last parameter,
and need not be mentioned here.")
(defvar ispell-look-command "look"
"*Command for running look.")
;Each marker in this list points to the start of a word that
;ispell thought was bad last time it did the :file command.
;Notice that if the user accepts or inserts a word into his
;private dictionary, then some "good" words will be on the list.
;We would like to deal with this by looking up the words again just before
;presenting them to the user, but that is too slow on machines
;without the select system call. Therefore, see the variable
;ispell-recently-accepted.
(defvar ispell-bad-words nil
"A list of markers reflecting the output of the Ispell `:file' command.")
;list of words that the user has accepted, but that might still
;be on the bad-words list
(defvar ispell-recently-accepted nil)
;; Non-nil means we have started showing an alternatives window.
;; This is the window config from before then.
(defvar ispell-window-configuration nil)
;t when :dump command needed
(defvar ispell-dump-needed nil)
(defun ispell-flush-bad-words ()
(while ispell-bad-words
(if (markerp (car ispell-bad-words))
(set-marker (car ispell-bad-words) nil))
(setq ispell-bad-words (cdr ispell-bad-words)))
(setq ispell-recently-accepted nil))
(defun kill-ispell ()
"Kill the Ispell process.
Any changes in your private dictionary
that have not already been dumped will be lost."
(interactive)
(if ispell-process
(delete-process ispell-process))
(setq ispell-process nil)
(ispell-flush-bad-words))
(put 'ispell-startup-error 'error-conditions
'(ispell-startup-error error))
(put 'ispell-startup-error 'error-message
"Problem starting ispell - see buffer *ispell*")
;; Start an ispell subprocess; check the version; and display the greeting.
(defun start-ispell ()
(message "Starting ispell ...")
(let ((buf (get-buffer "*ispell*")))
(if buf
(kill-buffer buf)))
(condition-case err
(setq ispell-process
(apply 'start-process "ispell" "*ispell*" ispell-command
(append (if (listp ispell-command-options)
ispell-command-options
(list ispell-command-options))
'("-S"))))
(file-error (signal 'ispell-startup-error nil)))
(process-kill-without-query ispell-process)
(buffer-disable-undo (process-buffer ispell-process))
(accept-process-output ispell-process)
(let (last-char)
(save-excursion
(set-buffer (process-buffer ispell-process))
(bury-buffer (current-buffer))
(setq last-char (- (point-max) 1))
(while (not (eq (char-after last-char) ?=))
(cond ((not (eq (process-status ispell-process) 'run))
(kill-ispell)
(signal 'ispell-startup-error nil)))
(accept-process-output ispell-process)
(setq last-char (- (point-max) 1)))
(goto-char (point-min))
(let ((greeting (read (current-buffer))))
(if (not (= (car greeting) 1))
(error "Bad ispell version: wanted 1, got %d" (car greeting)))
(message "%s" (car (cdr greeting))))
(delete-region (point-min) last-char))))
;; Make sure ispell is ready for a command.
;; Leaves buffer set to *ispell*, point at '='.
(defun ispell-sync (intr)
(if (or (null ispell-process)
(not (eq (process-status ispell-process) 'run)))
(start-ispell))
(if intr
(interrupt-process ispell-process))
(let (last-char)
(set-buffer (process-buffer ispell-process))
(bury-buffer (current-buffer))
(setq last-char (- (point-max) 1))
(while (not (eq (char-after last-char) ?=))
(accept-process-output ispell-process)
(setq last-char (- (point-max) 1)))
(goto-char last-char)))
;; Send a command to ispell. Choices are:
;;
;; WORD Check spelling of WORD. Result is
;;
;; nil not found
;; t spelled ok
;; list of strings near misses
;;
;; :file FILENAME scan the named file, and print the file offsets of
;; any misspelled words
;;
;; :insert WORD put word in private dictionary
;;
;; :accept WORD don't complain about word any more this session
;;
;; :dump write out the current private dictionary, if necessary.
;;
;; :reload reread private dictionary (default: `~/ispell.words')
;;
;; :tex
;; :troff
;; :generic set type of parser to use when scanning whole files
(defun ispell-cmd (&rest strings)
(save-excursion
(ispell-sync t)
(set-buffer (process-buffer ispell-process))
(bury-buffer (current-buffer))
(erase-buffer)
(setq ispell-next-message (point-min))
(while strings
(process-send-string ispell-process (car strings))
(setq strings (cdr strings)))
(process-send-string ispell-process "\n")
(accept-process-output ispell-process)
(ispell-sync nil)))
(defun ispell-dump ()
(cond (ispell-dump-needed
(setq ispell-dump-needed nil)
(ispell-cmd ":dump"))))
(defun ispell-insert (word)
(ispell-cmd ":insert " word)
(if ispell-bad-words
(setq ispell-recently-accepted (cons word ispell-recently-accepted)))
(setq ispell-dump-needed t))
(defun ispell-accept (word)
(ispell-cmd ":accept " word)
(if ispell-bad-words
(setq ispell-recently-accepted (cons word ispell-recently-accepted))))
;; Return the next message sent by the Ispell subprocess.
(defun ispell-next-message ()
(save-excursion
(set-buffer (process-buffer ispell-process))
(bury-buffer (current-buffer))
(save-restriction
(goto-char ispell-next-message)
(narrow-to-region (point)
(progn (forward-sexp 1) (point)))
(setq ispell-next-message (point))
(goto-char (point-min))
(read (current-buffer)))))
(defun ispell-tex-buffer-p ()
(memq major-mode '(plain-tex-mode latex-mode slitex-mode)))
(defvar ispell-menu-map (make-sparse-keymap "Spell"))
(defalias 'ispell-menu-map ispell-menu-map)
(define-key ispell-menu-map [ispell-complete-word-interior-frag]
'("Complete Interior Fragment" . ispell-complete-word-interior-frag))
(define-key ispell-menu-map [ispell-complete-word]
'("Complete Word" . ispell-complete-word))
(define-key ispell-menu-map [reload-ispell]
'("Reload Dictionary" . reload-ispell))
(define-key ispell-menu-map [ispell-next]
'("Continue Check" . ispell-next))
(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))
;;;autoload
(defun ispell (&optional buf start end)
"Run Ispell over current buffer's visited file.
First the file is scanned for misspelled words, then Ispell
enters a loop with the following commands for every misspelled word:
DIGIT Near miss selector. If the misspelled word is close to
some words in the dictionary, they are offered as near misses.
r Replace. Replace the word with a string you type. Each word
of your new string is also checked.
i Insert. Insert this word in your private dictionary (by default,
`$HOME/ispell.words').
a Accept. Accept this word for the rest of this editing session,
but don't put it in your private dictionary.
l Lookup. Look for a word in the dictionary by fast binary
search, or search for a regular expression in the dictionary
using grep.
SPACE Accept the word this time, but complain if it is seen again.
q, \\[keyboard-quit] Leave the command loop. You can come back later with \\[ispell-next]."
(interactive)
(if (null start)
(setq start 0))
(if (null end)
(setq end 0))
(if (null buf)
(setq buf (current-buffer)))
(setq buf (get-buffer buf))
(if (null buf)
(error "Can't find buffer"))
;; Deactivate the mark, because we'll do it anyway if we change something,
;; and a region highlight while in the Ispell loop is distracting.
(deactivate-mark)
(save-excursion
(set-buffer buf)
(let ((filename buffer-file-name)
(delete-temp nil))
(unwind-protect
(progn
(cond ((or (null filename)
(find-file-name-handler buffer-file-name nil))
(setq filename (make-temp-name "/usr/tmp/ispell"))
(setq delete-temp t)
(write-region (point-min) (point-max) filename))
((and (buffer-modified-p buf)
(y-or-n-p (format "Save file %s? " filename)))
(save-buffer)))
(message "Ispell scanning file...")
(if (and ispell-enable-tex-parser
(ispell-tex-buffer-p))
(ispell-cmd ":tex")
(ispell-cmd ":generic"))
(ispell-cmd (format ":file %s %d %d" filename start end)))
(if delete-temp
(condition-case ()
(delete-file filename)
(file-error nil)))))
(message "Parsing ispell output ...")
(ispell-flush-bad-words)
(let (pos bad-words)
(while (numberp (setq pos (ispell-next-message)))
;;ispell may check the words on the line following the end
;;of the region - therefore, don't record anything out of range
(if (or (= end 0)
(< pos end))
(setq bad-words (cons (set-marker (make-marker) (+ pos 1))
bad-words))))
(setq bad-words (cons pos bad-words))
(setq ispell-bad-words (nreverse bad-words))))
(cond ((not (markerp (car ispell-bad-words)))
(setq ispell-bad-words nil)
(message "No misspellings.")
t)
(t
(message "Ispell parsing done.")
(ispell-next))))
;;;autoload
(defalias 'ispell-buffer 'ispell)
(defun ispell-next ()
"Resume command loop for most recent Ispell command.
Return value is t unless exit is due to typing `q'."
(interactive)
(setq ispell-window-configuration nil)
(prog1
(unwind-protect
(catch 'ispell-quit
;; There used to be a save-excursion here,
;; but that was annoying: it's better if point doesn't move
;; when you type q.
(let (next)
(while (markerp (setq next (car ispell-bad-words)))
(switch-to-buffer (marker-buffer next))
(push-mark)
(ispell-point next "at saved position.")
(setq ispell-bad-words (cdr ispell-bad-words))
(set-marker next nil)))
t)
(ispell-dehighlight)
(if ispell-window-configuration
(set-window-configuration ispell-window-configuration))
(cond ((null ispell-bad-words)
(error "Ispell has not yet been run"))
((markerp (car ispell-bad-words))
(message "%s"
(substitute-command-keys
"Type \\[ispell-next] to continue")))
((eq (car ispell-bad-words) nil)
(setq ispell-bad-words nil)
(message "No more misspellings (but checker was interrupted)"))
((eq (car ispell-bad-words) t)
(setq ispell-bad-words nil)
(message "Ispell done"))
(t
(setq ispell-bad-words nil)
(message "Bad ispell internal list"))))
(ispell-dump)))
;;;autoload
(defun ispell-word (&optional resume)
"Check the spelling of the word under the cursor.
See the command `ispell' for more information.
With a prefix argument, resume handling of the previous Ispell command."
(interactive "P")
(if resume
(ispell-next)
(condition-case err
(unwind-protect
(catch 'ispell-quit
(save-window-excursion
(ispell-point (point) "at point."))
(ispell-dump))
(ispell-dehighlight))
(ispell-startup-error
(cond ((y-or-n-p "Problem starting ispell, use old-style spell instead? ")
(load-library "spell")
(define-key esc-map "$" 'spell-word)
(spell-word)))))))
;;;autoload (define-key esc-map "$" 'ispell-word)
;;;autoload
(defun ispell-region (start &optional end)
"Check the spelling for all of the words in the region."
(interactive "r")
(ispell (current-buffer) start end))
(defun ispell-letterp (c)
(and c
(or (and (>= c ?A) (<= c ?Z))
(and (>= c ?a) (<= c ?z))
(>= c 128))))
(defun ispell-letter-or-quotep (c)
(and c
(or (and (>= c ?A) (<= c ?Z))
(and (>= c ?a) (<= c ?z))
(= c ?')
(>= c 128))))
(defun ispell-find-word-start ()
;;backward to a letter
(if (not (ispell-letterp (char-after (point))))
(while (and (not (bobp))
(not (ispell-letterp (char-after (- (point) 1)))))
(backward-char)))
;;backward to beginning of word
(while (ispell-letter-or-quotep (char-after (- (point) 1)))
(backward-char))
(skip-chars-forward "'"))
(defun ispell-find-word-end ()
(while (ispell-letter-or-quotep (char-after (point)))
(forward-char))
(skip-chars-backward "'"))
(defun ispell-next-word ()
(while (and (not (eobp))
(not (ispell-letterp (char-after (point)))))
(forward-char)))
;if end is nil, then do one word at start
;otherwise, do all words from the beginning of the word where
;start points, to the end of the word where end points
(defun ispell-point (start message)
(let ((wend (make-marker))
rescan
end)
;; There used to be a save-excursion here,
;; but that was annoying: it's better if point doesn't move
;; when you type q.
(goto-char start)
(ispell-find-word-start) ;find correct word start
(setq start (point-marker))
(ispell-find-word-end) ;now find correct end
(setq end (point-marker))
;; Do nothing if we don't find a word.
(if (< start end)
(while (< start end)
(goto-char start)
(ispell-find-word-end) ;find end of current word
;could be before 'end' if
;user typed replacement
;that is more than one word
(set-marker wend (point))
(setq rescan nil)
(setq word (buffer-substring start wend))
(cond ((ispell-still-bad word)
;;; This just causes confusion. -- rms.
;;; (goto-char start)
;;; (sit-for 0)
(message "Ispell checking %s" word)
(ispell-cmd word)
(let ((message (ispell-next-message)))
(cond ((eq message t)
(message "%s: ok" word))
((or (null message)
(consp message))
(setq rescan
(ispell-command-loop word start wend message)))
(t
(error "unknown ispell response %s" message))))))
(cond ((null rescan)
(goto-char wend)
(ispell-next-word)
(set-marker start (point))))))
;;clear the choices buffer; otherwise it's hard for the user to tell
;;when we get back to the command loop
(let ((buf (get-buffer "*ispell choices*")))
(cond (buf
(set-buffer buf)
(erase-buffer))))
(set-marker start nil)
(set-marker end nil)
(set-marker wend nil)))
(defun ispell-still-bad (word)
(let ((words ispell-recently-accepted)
(ret t)
(case-fold-search t))
(while words
(cond ((eq (string-match (car words) word) 0)
(setq ret nil)
(setq words nil)))
(setq words (cdr words)))
ret))
(defun ispell-show-choices (word message first-line)
;;if there is only one window on the frame, make the ispell
;;messages winow be small. otherwise just use the other window
(let* ((selwin (selected-window))
(resize (eq selwin (next-window)))
(buf (get-buffer-create "*ispell choices*"))
w)
(or ispell-window-configuration
(setq ispell-window-configuration (current-window-configuration)))
(setq w (display-buffer buf))
(buffer-disable-undo buf)
(if resize
(unwind-protect
(progn
(select-window w)
(enlarge-window (- 6 (window-height w))))
(select-window selwin)))
(save-excursion
(set-buffer buf)
(bury-buffer buf)
(set-window-point w (point-min))
(set-window-start w (point-min))
(erase-buffer)
(insert first-line "\n")
(insert
"SPC skip; A accept; I insert; DIGIT select; R replace; \
L lookup; Q quit\n")
(cond ((not (null message))
(let ((i 0))
(while (< i 3)
(let ((j 0))
(while (< j 3)
(let* ((n (+ (* j 3) i))
(choice (nth n message)))
(cond (choice
(let ((str (format "%d %s" n choice)))
(insert str)
(insert-char ? (- 20 (length str)))))))
(setq j (+ j 1))))
(insert "\n")
(setq i (+ i 1)))))))))
(defun ispell-command-loop (word start end message)
(let ((flag t)
(rescan nil)
first-line)
(if (null message)
(setq first-line (concat "No near misses for '" word "'"))
(setq first-line (concat "Near misses for '" word "'")))
(ispell-highlight start end)
(while flag
(ispell-show-choices word message first-line)
(message "Ispell command: ")
(undo-boundary)
(let ((c (downcase (read-char)))
replacement)
(cond ((and (>= c ?0)
(<= c ?9)
(setq replacement (nth (- c ?0) message)))
(ispell-replace start end replacement)
(setq flag nil))
((= c ?q)
(throw 'ispell-quit nil))
((= c (nth 3 (current-input-mode)))
(keyboard-quit))
((= c ? )
(setq flag nil))
((= c ?r)
(ispell-replace start end (read-string "Replacement: "))
(setq rescan t)
(setq flag nil))
((= c ?i)
(ispell-insert word)
(setq flag nil))
((= c ?a)
(ispell-accept word)
(setq flag nil))
((= c ?l)
(let ((val (ispell-do-look word)))
(setq first-line (car val))
(setq message (cdr val))))
((= c ??)
(message
"Type 'C-h d ispell' to the emacs main loop for more help")
(sit-for 2))
(t
(message "Bad ispell command")
(sit-for 2)))))
rescan))
(defun ispell-do-look (bad-word)
(let (regex buf words)
(cond ((null ispell-have-new-look)
(setq regex (read-string "Lookup: ")))
(t
(setq regex (read-string "Lookup (regex): " "^"))))
(setq buf (get-buffer-create "*ispell look*"))
(save-excursion
(set-buffer buf)
(delete-region (point-min) (point-max))
(if ispell-have-new-look
(call-process ispell-look-command nil buf nil "-r" regex)
(call-process ispell-look-command nil buf nil regex))
(goto-char (point-min))
(forward-line 10)
(delete-region (point) (point-max))
(goto-char (point-min))
(while (not (= (point-min) (point-max)))
(end-of-line)
(setq words (cons (buffer-substring (point-min) (point)) words))
(forward-line)
(delete-region (point-min) (point)))
(kill-buffer buf)
(cons (format "Lookup '%s'" regex)
(reverse words)))))
(defun ispell-replace (start end new)
(goto-char start)
(insert new)
(delete-region (point) end))
(defun reload-ispell ()
"Tell Ispell to re-read your private dictionary."
(interactive)
(ispell-cmd ":reload"))
(defun batch-make-ispell ()
(byte-compile-file "ispell.el")
(find-file "ispell.texinfo")
(let ((old-dir default-directory)
(default-directory "/tmp"))
(texinfo-format-buffer))
(Info-validate)
(if (get-buffer " *problems in info file*")
(kill-emacs 1))
(write-region (point-min) (point-max) "ispell.info"))
(defvar ispell-highlight t
"*Non-nil means to highlight ispell words.")
(defvar ispell-overlay nil)
(defun ispell-dehighlight ()
(and ispell-overlay
(progn
(delete-overlay ispell-overlay)
(setq ispell-overlay nil))))
(defun ispell-highlight (start end)
(and ispell-highlight
window-system
(progn
(or ispell-overlay
(progn
(setq ispell-overlay (make-overlay start end))
(overlay-put ispell-overlay 'face
(if (internal-find-face 'ispell)
'ispell 'region))))
(move-overlay ispell-overlay start end (current-buffer)))))
;;;; ispell-complete-word
;;; Brief Description:
;;; Complete word fragment at point using dictionary and replace with full
;;; word. Expansion done in current buffer like lisp-complete-symbol.
;;; Completion of interior word fragments possible with prefix argument.
;;; Known Problem:
;;; Does not use private dictionary because GNU `look' does not use it. It
;;; would be nice if GNU `look' took standard input; this would allow gzip'ed
;;; dictionaries to be used. GNU `look' also has a bug, see
;;; `ispell-gnu-look-still-broken-p'.
;;; Motivation:
;;; The `l', "regular expression look up", keymap option of ispell-word
;;; (ispell-do-look) can only be run after finding a misspelled word. So
;;; ispell-do-look can not be used to look for words starting with `cat' to
;;; find `catechetical' since `cat' is a correctly spelled word. Furthermore,
;;; ispell-do-look does not return the entire list returned by `look'.
;;;
;;; ispell-complete-word allows you to get a completion list from the system
;;; dictionary and expand a word fragment at the current position in a buffer.
;;; These examples assume ispell-complete-word is bound to M-TAB as it is in
;;; text-mode; the `Complete Word' and `Complete Interior Fragment' entries of
;;; the "Spell" submenu under the "Edit" menu may also be used instead of
;;; M-TAB and C-u M-TAB, respectively.
;;;
;;; EXAMPLE 1: The word `Saskatchewan' needs to be spelled. The user may
;;; type `Sas' and hit M-TAB and a completion list will be built using the
;;; shell command `look' and displayed in the *Completions* buffer:
;;;
;;; Possible completions are:
;;; sash sashay
;;; sashayed sashed
;;; sashes sashimi
;;; Saskatchewan Saskatoon
;;; sass sassafras
;;; sassier sassing
;;; sasswood sassy
;;;
;;; By viewing this list the user will hopefully be motivated to insert the
;;; letter `k' after the `sas'. When M-TAB is hit again the word `Saskat'
;;; will be inserted in place of `sas' (note case) since this is a unique
;;; substring completion. The narrowed completion list can be viewed with
;;; another M-TAB
;;;
;;; Possible completions are:
;;; Saskatchewan Saskatoon
;;;
;;; Inserting the letter `c' and hitting M-TAB will narrow the completion
;;; possibilities to just `Saskatchewan' and this will be inserted in the
;;; buffer. At any point the user may click the mouse on a completion to
;;; select it.
;;;
;;; EXAMPLE 2: The user has typed `Sasaquane' and M-$ (ispell-word) gives no
;;; "near-misses" in which case you back up to `Sas' and hit M-TAB and find
;;; the correct word as above. The `Sas' will be replaced by `Saskatchewan'
;;; and the remaining word fragment `aquane' can be deleted.
;;;
;;; EXAMPLE 3: If a version of `look' is used that supports regular
;;; expressions, then `ispell-have-new-look' should be t (its default) and
;;; interior word fragments may also be used for the search. The word
;;; `pneumonia' needs to be spelled. The user can only remember the
;;; interior fragment `mon' in which case `C-u M-TAB' on `mon' gives a list
;;; of all words containing the interior word fragment `mon'. Typing `p'
;;; and M-TAB will narrow this list to all the words starting with `p' and
;;; containing `mon' from which `pneumonia' can be found as above.
;;; The user-defined variables are:
;;;
;;; ispell-look-command
;;; ispell-look-dictionary
;;; ispell-gnu-look-still-broken-p
;;; Algorithm (some similarity to lisp-complete-symbol):
;;;
;;; * call-process on command ispell-look-command (default: "look") to find
;;; words in ispell-look-dictionary matching `string' (or `regexp' if
;;; ispell-have-new-look is t). Parse output and store results in
;;; ispell-lookup-completions-alist.
;;;
;;; * Build completion list using try-completion and `string'
;;;
;;; * Replace `string' in buffer with matched common substring completion.
;;;
;;; * Display completion list only if there is no matched common substring.
;;;
;;; * Rebuild ispell-lookup-completions-alist, on a next call, only when
;;; beginning of word fragment has changed.
;;;
;;; * Interior fragments searches are performed similarly with the exception
;;; that the entire fragment at point is initially removed from the buffer,
;;; the STRING passed to try-completion and all-completions is just "" and
;;; not the interior fragment; this allows all completions containing the
;;; interior fragment to be shown. The location in the buffer is stored to
;;; decide whether future completion narrowing of the current list should be
;;; done or if a new list should be built. See interior fragment example
;;; above.
;;;
;;; * Robust searches are done using a `look' with -r (regular expression)
;;; switch if ispell-have-new-look is t.
;;;; User-defined variables.
(defvar ispell-look-dictionary nil
"*If non-nil then spelling dictionary as string for `ispell-complete-word'.
Overrides default dictionary file such as \"/usr/dict/words\" or GNU look's
\"${prefix}/lib/ispell/ispell.words\"")
(defvar ispell-gnu-look-still-broken-p nil
"*t if GNU look -r can give different results with and without trailing `.*'.
Example: `look -dfr \"^ya\" foo' returns nothing, while `look -dfr \"^ya.*\" foo'
returns `yacc', where `foo' is a dictionary file containing the three lines
y
y's
yacc
Both commands should return `yacc'. If `ispell-complete-word' erroneously
states that no completions exist for a string, then setting this variable to t
will help find those completions.")
;;;; Internal variables.
;;; Possible completions for last word fragment.
(defvar ispell-lookup-completions-alist nil)
;;; Last word fragment processed by `ispell-complete-word'.
(defvar ispell-lookup-last-word nil)
;;; Buffer local variables.
;;; Value of interior-frag in last call to `ispell-complete-word'.
(defvar ispell-lookup-last-interior-p nil)
(make-variable-buffer-local 'ispell-lookup-last-interior-p)
(put 'ispell-lookup-last-interior-p 'permanent-local t)
;;; Buffer position in last call to `ispell-complete-word'.
(defvar ispell-lookup-last-bow nil)
(make-variable-buffer-local 'ispell-lookup-last-bow)
(put 'ispell-lookup-last-bow 'permanent-local t)
;;;; Interactive functions.
;;;autoload
(defun ispell-complete-word (&optional interior-frag)
"Complete word using letters at point to word beginning using `look'.
With optional argument INTERIOR-FRAG, word fragment at point is assumed to be
an interior word fragment in which case `ispell-have-new-look' should be t.
See also `ispell-look-dictionary' and `ispell-gnu-look-still-broken-p'."
(interactive "P")
;; `look' must support regexp expressions in order to perform an interior
;; fragment search.
(if (and interior-frag (not ispell-have-new-look))
(error (concat "Sorry, `ispell-have-new-look' is nil. "
"You also will need GNU Ispell's `look'.")))
(let* ((completion-ignore-case t)
;; Get location of beginning of word fragment.
(bow (save-excursion (skip-chars-backward "a-zA-Z'") (point)))
;; Get the string to look up.
(string (buffer-substring bow (point)))
;; Get regexp for which we search and, if necessary, an interior word
;; fragment.
(regexp (if interior-frag
(concat "^.*" string ".*")
;; If possible use fast binary search: no trailing `.*'.
(concat "^" string
(if ispell-gnu-look-still-broken-p ".*"))))
;; We want all completions for case of interior fragments so set
;; prefix to an empty string.
(prefix (if interior-frag "" string))
;; Are we continuing from a previous interior fragment search?
;; Check last value of interior-word and if the point has moved.
(continuing-an-interior-frag-p
(and ispell-lookup-last-interior-p
(equal ispell-lookup-last-bow bow)))
;; Are we starting a unique word fragment search? Always t for
;; interior word fragment search.
(new-unique-string-p
(or interior-frag (null ispell-lookup-last-word)
(let ((case-fold-search t))
;; Can we locate last word fragment as a substring of current
;; word fragment? If the last word fragment is larger than
;; the current string then we will have to rebuild the list
;; later.
(not (string-match
(concat "^" ispell-lookup-last-word) string)))))
completion)
;; Check for perfect completion already. That is, maybe the user has hit
;; M-x ispell-complete-word one too many times?
(if (string-equal string "")
(if (string-equal (concat ispell-lookup-last-word " ")
(buffer-substring
(save-excursion (forward-word -1) (point)) (point)))
(error "Perfect match already")
(error "No word fragment at point")))
;; Create list of words from system dictionary starting with `string' if
;; new string and not continuing from a previous interior fragment search.
(if (and (not continuing-an-interior-frag-p) new-unique-string-p)
(setq ispell-lookup-completions-alist
(ispell-lookup-build-list string regexp)))
;; Check for a completion of `string' in the list and store `string' and
;; other variables for the next call.
(setq completion (try-completion prefix ispell-lookup-completions-alist)
ispell-lookup-last-word string
ispell-lookup-last-interior-p interior-frag
ispell-lookup-last-bow bow)
;; Test the completion status.
(cond
;; * Guess is a perfect match.
((eq completion t)
(insert " ")
(message "Perfect match."))
;; * No possibilities.
((null completion)
(message "Can't find completion for \"%s\"" string)
(beep))
;; * Replace string fragment with matched common substring completion.
((and (not (string-equal completion ""))
;; Fold case so a completion list is built when `string' and common
;; substring differ only in case.
(let ((case-fold-search t))
(not (string-match (concat "^" completion "$") string))))
(search-backward string bow)
(replace-match completion nil t) ; FIXEDCASE doesn't work? or LITERAL?
(message "Proposed unique substring. Repeat for completions list."))
;; * String is a common substring completion already. Make list.
(t
(message "Making completion list...")
(if (string-equal completion "") (delete-region bow (point)))
(let ((list (all-completions prefix ispell-lookup-completions-alist)))
(with-output-to-temp-buffer "*Completions*"
(display-completion-list list)))
(message "Making completion list...done")))))
;;;autoload
(defun ispell-complete-word-interior-frag ()
"Runs `ispell-complete-word' with a non-nil INTERIOR-FRAG.
A completion list is built for word fragment at point which is assumed to be
an interior word fragment. `ispell-have-new-look' should be t."
(interactive)
(ispell-complete-word t))
;;;; Internal Function.
;;; Build list of words using ispell-look-command from dictionary
;;; ispell-look-dictionary (if this is a non-nil string). Look for words
;;; starting with STRING if ispell-have-new-look is nil or look for REGEXP if
;;; ispell-have-new-look is t. Returns result as an alist suitable for use by
;;; try-completion, all-completions, and completing-read.
(defun ispell-lookup-build-list (string regexp)
(save-excursion
(message "Building list...")
(set-buffer (get-buffer-create " *ispell look*"))
(erase-buffer)
(if (stringp ispell-look-dictionary)
(if ispell-have-new-look
(call-process ispell-look-command nil t nil "-fr" regexp
ispell-look-dictionary)
(call-process ispell-look-command nil t nil "-f" string
ispell-look-dictionary))
(if ispell-have-new-look
(call-process ispell-look-command nil t nil "-fr" regexp)
(call-process ispell-look-command nil t nil "-f" string)))
;; Build list for try-completion and all-completions by storing each line
;; of output starting from bottom of buffer and deleting upwards.
(let (list)
(goto-char (point-min))
(while (not (= (point-min) (point-max)))
(end-of-line)
(setq list (cons (buffer-substring (point-min) (point)) list))
(forward-line)
(delete-region (point-min) (point)))
;; Clean.
(erase-buffer)
(message "Building list...done")
;; Make the list into an alist and return.
(mapcar 'list (nreverse list)))))
;; Return regexp-quote of STRING if STRING is non-empty.
;; Otherwise return an unmatchable regexp.
(defun ispell-non-empty-string (string)
(if (or (not string) (string-equal string ""))
"\\'\\`" ; An unmatchable string if string is null.
(regexp-quote string)))
(defvar ispell-message-cite-regexp "^ \\|^\t"
"*Regular expression to match lines cited from one message into another.")
(defvar ispell-message-text-end
(concat "^\\(" (mapconcat (function identity)
'(
;; Matches postscript files.
"%!PS-Adobe-2.0"
;; Matches uuencoded text
"begin [0-9][0-9][0-9] .*\nM.*\nM.*\nM"
;; Matches shell files (esp. auto-decoding)
"#! /bin/sh"
;; Matches difference listing
"diff -c .*\n\\*\\*\\* .*\n--- "
;; Matches "--------------------- cut here"
"[-=]+\\s cut here")
"\\|")
"\\)")
"*End of text which will be checked in ispell-message.
If it is a string, limit at first occurrence of that regular expression.
Otherwise, it must be a function which is called to get the limit.")
(defvar ispell-message-limit (* 100 80)
"*Ispell-message will check no more than this number of characters.")
;;;autoload
(defun ispell-message ()
"Check the spelling of a mail message or news post.
Don't check spelling of message headers (except subject) or included messages.
To spell-check whenever a message is sent, include this line in .emacs:
(setq news-inews-hook (setq mail-send-hook 'ispell-message))
Or you can bind the function to C-c i in gnus or mail with:
(setq mail-mode-hook (setq news-reply-mode-hook
(function (lambda () (local-set-key \"\\C-ci\" 'ispell-message)))))"
(interactive)
(save-excursion
(let (non-internal-message
(old-case-fold-search case-fold-search)
(case-fold-search nil))
(goto-char (point-min))
;; Don't spell-check the headers.
(if (search-forward mail-header-separator nil t)
;; Move to first body line.
(forward-line 1)
(while (and (looking-at "[a-zA-Z-]+:\\|\t\\| ")
(not (eobp)))
(forward-line 1))
(setq non-internal-message t)
)
(let* ((cite-regexp ;Prefix of inserted text
(cond
((featurep 'supercite) ; sc 3.0
(concat "\\(" (sc-cite-regexp) "\\)" "\\|"
(ispell-non-empty-string sc-reference-tag-string)))
((featurep 'sc) ; sc 2.3
(concat "\\(" sc-cite-regexp "\\)" "\\|"
(ispell-non-empty-string sc-reference-tag-string)))
(non-internal-message ; Assume nn sent us this message.
(concat "In [a-zA-Z.]+ you write:" "\\|"
"In <[^,;&+=]+> [^,;&+=]+ writes:" "\\|"
" *> *"))
((equal major-mode 'news-reply-mode) ;Gnus
(concat "In article <" "\\|"
(if mail-yank-prefix
(ispell-non-empty-string mail-yank-prefix)
ispell-message-cite-regexp)))
((boundp 'vm-included-text-prefix) ; VM mail message
(concat "[^,;&+=]+ writes:" "\\|"
(ispell-non-empty-string vm-included-text-prefix)
))
((boundp 'mh-ins-buf-prefix) ; mh mail message
(ispell-non-empty-string mh-ins-buf-prefix))
(mail-yank-prefix ; vanilla mail message.
(ispell-non-empty-string mail-yank-prefix))
(t ispell-message-cite-regexp)))
(continue t)
(limit
(min
(+ (point-min) ispell-message-limit)
(point-max)
(save-excursion
(cond
((not ispell-message-text-end) (point-max))
((char-or-string-p ispell-message-text-end)
(if (re-search-forward ispell-message-text-end nil 'end)
(match-beginning 0)
(point-max)))
(t (funcall ispell-message-text-end))))))
(search-limit ; Search limit which won't stop in middle of citation
(+ limit (length cite-regexp)))
)
;; Check the subject
(save-excursion
(let ((case-fold-search t)
(message-begin (point)))
(goto-char (point-min))
;; "\\s *" matches newline if subject is empty
(if (and (re-search-forward "^Subject:[\t ]*" message-begin t)
(not (looking-at "re\\>")))
(setq continue
(ispell-region (- (point) 1)
(progn
(end-of-line)
(while (looking-at "\n[ \t]")
(end-of-line 2))
(point))))
)))
;; Check the body.
(while (and (< (point) limit) continue)
;; Skip across text cited from other messages.
(while (and (looking-at (concat "^[ \t]*$\\|" cite-regexp))
(< (point) limit))
(forward-line 1))
(if (< (point) limit)
;; Check the next batch of lines that *aren't* cited.
(let ((start (point)))
(if (re-search-forward
(concat "^\\(" cite-regexp "\\)") search-limit 'end)
(beginning-of-line))
(if (> (point) limit) (goto-char limit))
(let ((case-fold-search old-case-fold-search))
(save-excursion
(setq continue (ispell-region (- start 1) (point))))))))))))
(provide 'ispell)
;;; ispell.el ends here
|