comparison lisp/textmodes/ispell.el @ 87519:6a0c500ca3a9

Merge from emacs--rel--22, gnus--devo--0 Revision: emacs@sv.gnu.org/emacs--devo--0--patch-975
author Miles Bader <miles@gnu.org>
date Wed, 02 Jan 2008 02:20:42 +0000
parents 20bb7aaa7b12 e1264c5f9e23
children 107ccd98fa12 c938ab6810a4
comparison
equal deleted inserted replaced
87518:78fc69cc7bef 87519:6a0c500ca3a9
334 Always stores Fcc copy of message when nil." 334 Always stores Fcc copy of message when nil."
335 :type '(choice integer (const :tag "off" nil)) 335 :type '(choice integer (const :tag "off" nil))
336 :group 'ispell) 336 :group 'ispell)
337 337
338 338
339 (defcustom ispell-grep-command "egrep" 339 (defcustom ispell-grep-command
340 ;; MS-Windows/MS-DOS have `egrep' as a Unix shell script, so they
341 ;; cannot invoke it. Use "grep -E" instead (see ispell-grep-options
342 ;; below).
343 (if (memq system-type '(windows-nt ms-dos)) "grep" "egrep")
340 "Name of the grep command for search processes." 344 "Name of the grep command for search processes."
341 :type 'string 345 :type 'string
342 :group 'ispell) 346 :group 'ispell)
343 347
344 (defcustom ispell-grep-options "-i" 348 (defcustom ispell-grep-options
349 (if (memq system-type '(windows-nt ms-dos)) "-Ei" "-i")
345 "String of options to use when running the program in `ispell-grep-command'. 350 "String of options to use when running the program in `ispell-grep-command'.
346 Should probably be \"-i\" or \"-e\". 351 Should probably be \"-i\" or \"-e\".
347 Some machines (like the NeXT) don't support \"-i\"" 352 Some machines (like the NeXT) don't support \"-i\""
348 :type 'string 353 :type 'string
349 :group 'ispell) 354 :group 'ispell)