all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* spell checker in nroff mode?
@ 2008-04-05 17:54 Luke Huang
  0 siblings, 0 replies; 2+ messages in thread
From: Luke Huang @ 2008-04-05 17:54 UTC (permalink / raw)
  To: help-gnu-emacs

[-- Attachment #1: Type: text/plain, Size: 417 bytes --]

Hi all

I am not a English native speaker so that I always open spell checker  
on-the-fly. It works pretty well even if in programming. But, it's a  
bit inconvenient when it works when I am writing troff file.

For example:

\fBPhysical Address\fP

In this case spell checker highlights \fBPhysical as a wrong word. How  
can I avoid this? (either in an Emacs way or in a troff way)

Thanks a lot for your help
Luke

[-- Attachment #2: Type: text/html, Size: 664 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: spell checker in nroff mode?
       [not found] <mailman.10053.1207430872.18990.help-gnu-emacs@gnu.org>
@ 2008-04-14  2:50 ` sato_ichi
  0 siblings, 0 replies; 2+ messages in thread
From: sato_ichi @ 2008-04-14  2:50 UTC (permalink / raw)
  To: help-gnu-emacs

On Apr 5, 1:54 pm, Luke Huang <luke.hu...@exludus.com> wrote:
> I am not a English native speaker so that I always open spell checker
> on-the-fly. It works pretty well even if in programming. But, it's a
> bit inconvenient when it works when I am writing troff file.
>
> For example:
>
> \fBPhysical Address\fP
>
> In this case spell checker highlights \fBPhysical as a wrong word. How
> can I avoid this? (either in an Emacs way or in a troff way)

Which spell checker do you have installed, ispell or aspell? If I use
aspell in ispell compatibility mode from within Emacs, I can never get
it to parse troff files when in nroff mode, no matter what options I
try. The only way I got it to work was to use the real ispell program.
If you have aspell installed then you probably have a /usr/bin/ispell
linked to aspell, so you'll have to rename or delete that link. After
installing the real ispell, put this in your .emacs file:

(setq ispell-program-name "ispell")
(add-hook 'nroff-mode-hook (lambda () (setq ispell-parser 'nroff)))

The spell checker should then be able to parse troff when in nroff
mode.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-04-14  2:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <mailman.10053.1207430872.18990.help-gnu-emacs@gnu.org>
2008-04-14  2:50 ` spell checker in nroff mode? sato_ichi
2008-04-05 17:54 Luke Huang

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.