Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Chars escape-quoted in RMAIL files saved from gnus
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Scott Heftler  
View profile  
 More options Apr 27 2008, 6:13 pm
Newsgroups: gnu.emacs.help
From: Scott Heftler <lovecraft...@mac.com>
Date: Sun, 27 Apr 2008 17:13:35 -0500
Local: Sun, Apr 27 2008 6:13 pm
Subject: Chars escape-quoted in RMAIL files saved from gnus
Well, I can open files saved in `gnus-summary-save-in-rmail' format,
but many characters get escape-quoted, such as the elipsis character
`...', which I see as \205.

So what coding system variable do I need to change so that my saved
files can be read in prteey RMAIL mode but do not have ascii chars >
127 escaped out?

Thanks in advance.

-- Scott


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Dyballa  
View profile  
 More options Apr 27 2008, 6:49 pm
Newsgroups: gnu.emacs.help
From: Peter Dyballa <Peter_Dyba...@Web.DE>
Date: Mon, 28 Apr 2008 00:49:48 +0200
Local: Sun, Apr 27 2008 6:49 pm
Subject: Re: Chars escape-quoted in RMAIL files saved from gnus

Am 28.04.2008 um 00:13 schrieb Scott Heftler:

> So what coding system variable do I need

windows-1250, windows-1251, windows-1252

--
Greetings

   Pete

A blizzard is when it snows sideways.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Heftler  
View profile  
 More options Apr 27 2008, 6:59 pm
Newsgroups: gnu.emacs.help
From: Scott Heftler <lovecraft...@mac.com>
Date: Sun, 27 Apr 2008 17:59:02 -0500
Local: Sun, Apr 27 2008 6:59 pm
Subject: Re: Chars escape-quoted in RMAIL files saved from gnus
Yes, Pete, these are the CS symbols I assign to some variable; but
which one?  There are so many CS variables in emacs, including special
alists for gnus and for mm, rmail, etc.  To which one in particular do
I make the assignment?

-- Scott


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Scott Heftler  
View profile  
 More options Apr 27 2008, 7:30 pm
Newsgroups: gnu.emacs.help
From: Scott Heftler <lovecraft...@mac.com>
Date: Sun, 27 Apr 2008 18:30:22 -0500
Local: Sun, Apr 27 2008 7:30 pm
Subject: Re: Chars escape-quoted in RMAIL files saved from gnus
OK, so the windows-1252 ellipses display nicely in a RMAIL-mode file
saved via `gnus-summary-save-in-rmail' when I run
`universal-coding-system-argument' via C -x RET c windows-1252.  But
SURELY there must be a way to automate this.  So I put these in my
init file:

(prefer-coding-system 'windows-1252)
(prefer-coding-system 'utf-8)

This makes sure utf-8 is top pick, and windowsw-1252 is second.

You'd think that, when emacs encounters these \205s, it would KNOW to
pick windows-1252.  But it doesn't.  Is there no way to AUTOMATE
emacs' pick of coding system?

-- Scott


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Peter Dyballa  
View profile  
 More options Apr 28 2008, 4:38 am
Newsgroups: gnu.emacs.help
From: Peter Dyballa <Peter_Dyba...@Web.DE>
Date: Mon, 28 Apr 2008 10:38:50 +0200
Local: Mon, Apr 28 2008 4:38 am
Subject: Re: Chars escape-quoted in RMAIL files saved from gnus

Am 28.04.2008 um 01:30 schrieb Scott Heftler:

> You'd think that, when emacs encounters these \205s, it would KNOW to
> pick windows-1252.  But it doesn't.  Is there no way to AUTOMATE
> emacs' pick of coding system?

It's possible to use (file) local variables. In the file's header,  
first line I think, something like

        ;; -*- mode: Emacs-Lisp; coding: utf-8; -*-

or at the file's end

        %%% Local Variables:
        %%% mode: latex
        %%% TeX-master: t
        %%% coding: utf-8-unix
        %%% TeX-command-default: "XeLaTeX"
        %%% End:

you can set a few parameters of operation. Depending on which file  
type(s) is easier to manipulate by these means you can leave out one  
encoding preference. Something like this might also work (I think I  
once had this active):

        ;;(setq file-coding-system-alist
        ;;  (append
        ;;    '(("\\.tex\\'" iso-latin-9-unix . iso-latin-9-unix))
        ;;    file-coding-system-alist))

        ;(modify-coding-system-alist 'file "\\.tex\\'" 'iso-latin-9-unix)

Or you can decide to reduce the number of encodings you use.  
Sometimes less pluralism can be more.

--
Greetings

   Pete

Know thyself. Need help, call GOOGLE.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »