Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 253643
Collapse All | Expand All

(-)file_not_specified_in_diff (-13 / +13 lines)
Line  Link Here
0
-- lisp/textmodes/ispell.el
0
++ lisp/textmodes/ispell.el
Lines 333-347 Link Here
333
  :group 'ispell)
333
  :group 'ispell)
334
334
335
(defcustom ispell-alternate-dictionary
335
(defcustom ispell-alternate-dictionary
336
  (cond ((file-exists-p "/usr/dict/web2") "/usr/dict/web2")
336
  (cond ((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/dict/web2") "@GENTOO_PORTAGE_EPREFIX@/usr/dict/web2")
337
	((file-exists-p "/usr/share/dict/web2") "/usr/share/dict/web2")
337
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/share/dict/web2") "@GENTOO_PORTAGE_EPREFIX@/usr/share/dict/web2")
338
	((file-exists-p "/usr/dict/words") "/usr/dict/words")
338
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/dict/words") "@GENTOO_PORTAGE_EPREFIX@/usr/dict/words")
339
	((file-exists-p "/usr/lib/dict/words") "/usr/lib/dict/words")
339
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/lib/dict/words") "@GENTOO_PORTAGE_EPREFIX@/usr/lib/dict/words")
340
	((file-exists-p "/usr/share/dict/words") "/usr/share/dict/words")
340
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/share/dict/words") "@GENTOO_PORTAGE_EPREFIX@/usr/share/dict/words")
341
	((file-exists-p "/usr/share/lib/dict/words")
341
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/share/lib/dict/words")
342
	 "/usr/share/lib/dict/words")
342
	 "@GENTOO_PORTAGE_EPREFIX@/usr/share/lib/dict/words")
343
	((file-exists-p "/sys/dict") "/sys/dict")
343
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/sys/dict") "@GENTOO_PORTAGE_EPREFIX@/sys/dict")
344
	(t "/usr/dict/words"))
344
	(t "@GENTOO_PORTAGE_EPREFIX@/usr/dict/words"))
345
  "*Alternate dictionary for spelling help."
345
  "*Alternate dictionary for spelling help."
346
  :type '(choice file (const :tag "None" nil))
346
  :type '(choice file (const :tag "None" nil))
347
  :group 'ispell)
347
  :group 'ispell)
Lines 388-396 Link Here
388
  :group 'ispell)
388
  :group 'ispell)
389
389
390
(defcustom ispell-look-command
390
(defcustom ispell-look-command
391
  (cond ((file-exists-p "/bin/look") "/bin/look")
391
  (cond ((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/bin/look") "@GENTOO_PORTAGE_EPREFIX@/bin/look")
392
	((file-exists-p "/usr/local/bin/look") "/usr/local/bin/look")
392
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/local/bin/look") "@GENTOO_PORTAGE_EPREFIX@/usr/local/bin/look")
393
	((file-exists-p "/usr/bin/look") "/usr/bin/look")
393
	((file-exists-p "@GENTOO_PORTAGE_EPREFIX@/usr/bin/look") "@GENTOO_PORTAGE_EPREFIX@/usr/bin/look")
394
	(t "look"))
394
	(t "look"))
395
  "Name of the look command for search processes.
395
  "Name of the look command for search processes.
396
This must be an absolute file name."
396
This must be an absolute file name."

Return to bug 253643