unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* Coding system in compilation buffer
@ 2007-12-04 20:32 Enno Fennema
  2007-12-05 18:12 ` Eli Zaretskii
  0 siblings, 1 reply; 3+ messages in thread
From: Enno Fennema @ 2007-12-04 20:32 UTC (permalink / raw)
  To: bug-gnu-emacs

I am using GNU Emacs 22.1.1 part of SuSE Linux 10.3 x86_64.
When doing a compile gcc writes its messages/warnings using utf-8 which 
does not help readability when the buffers assumes latin-1.

According to the documentation compilation-process-setup-function is 
called with compilation-buffer bound. I think that variable is actually 
called outbuf in compile.el That would be a documentation bug, however 
minor; the rest is a question.

I tried emacs initialization with:
 >>
(defun compile-utf ()
   "Set compilation buffer for UTF-8"
   ( save-current-buffer
     (set-buffer outbuf)
     (set-buffer-process-coding-system "utf-8" "utf-8")))

(setq compilation-process-setup-function 'compile-utf)
<<

That doesn't work either complaining that there is no process yet.

I don't want to set a global utf-8 preference as normally I prefer
latin-1, which works fine for a West-European (for years I worked with 
ASCII only).

Does the above idea make sense, if so how do I make it work, or is there 
an alternative better approach?

Regards,
Enno Fennema




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

* Re: Coding system in compilation buffer
  2007-12-04 20:32 Coding system in compilation buffer Enno Fennema
@ 2007-12-05 18:12 ` Eli Zaretskii
  2007-12-06 22:06   ` Enno Fennema
  0 siblings, 1 reply; 3+ messages in thread
From: Eli Zaretskii @ 2007-12-05 18:12 UTC (permalink / raw)
  To: Enno Fennema; +Cc: bug-gnu-emacs

> Date: Tue, 04 Dec 2007 21:32:21 +0100
> From: Enno Fennema <e.fennema@tiscali.nl>
> 
> (defun compile-utf ()
>    "Set compilation buffer for UTF-8"
>    ( save-current-buffer
>      (set-buffer outbuf)
>      (set-buffer-process-coding-system "utf-8" "utf-8")))
> 
> (setq compilation-process-setup-function 'compile-utf)
> <<
> 
> That doesn't work either complaining that there is no process yet.

You need to bind coding-system-for-read to utf-8 prior to invoking the
compilation.  Try it interactively with

  C-x RET c utf-8 RET M-x compile RET ...

and if it does what you want, define a function that binds
coding-system-for-read and then invokes compile.




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

* Re: Coding system in compilation buffer
  2007-12-05 18:12 ` Eli Zaretskii
@ 2007-12-06 22:06   ` Enno Fennema
  0 siblings, 0 replies; 3+ messages in thread
From: Enno Fennema @ 2007-12-06 22:06 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: bug-gnu-emacs


Eli Zaretskii wrote:
> 
> You need to bind coding-system-for-read to utf-8 prior to invoking the
> compilation.

Works like a charm. Many thanks.

Enno Fennema




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

end of thread, other threads:[~2007-12-06 22:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-12-04 20:32 Coding system in compilation buffer Enno Fennema
2007-12-05 18:12 ` Eli Zaretskii
2007-12-06 22:06   ` Enno Fennema

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).