Re: [PATCH] general: convert "kernel" subdirectory to UTF-8

2007-04-18 Thread David Härdeman
On Wed, April 18, 2007 6:56, Dmitry Torokhov said:
> On Tuesday 17 April 2007 13:19, John Anthony Kazos Jr. wrote:
>> Â /*
>> - * Samma på svenska..
>> + * Samma på svenska..
>> Â  */
>
> Translating this comment into english so more people could understand it
> would be better option.

The comment says "(The) same in swedish"

-- 
David Härdeman

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] general: convert kernel subdirectory to UTF-8

2007-04-18 Thread David Härdeman
On Wed, April 18, 2007 6:56, Dmitry Torokhov said:
 On Tuesday 17 April 2007 13:19, John Anthony Kazos Jr. wrote:
 Â /*
 - * Samma på svenska..
 + * Samma på svenska..
 Â  */

 Translating this comment into english so more people could understand it
 would be better option.

The comment says (The) same in swedish

-- 
David Härdeman

-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] general: convert "kernel" subdirectory to UTF-8

2007-04-17 Thread Dmitry Torokhov
On Tuesday 17 April 2007 13:19, John Anthony Kazos Jr. wrote:
>  /*
> - * Samma på svenska..
> + * Samma på svenska..
>   */

Translating this comment into english so more people could understand it
would be better option.

-- 
Dmitry
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] general: convert "kernel" subdirectory to UTF-8

2007-04-17 Thread John Anthony Kazos Jr.
> > I can't get my mail client to send in ISO-8859-1 instead of UTF-8, so the 
> 
> Actually your mail is encoded in iso-8859-15.

Is it? I've sent a bajillion test messages to myself and they all ended up 
UTF-8, meaning it actually recursively encoded the original UTF-8 in the 
message.

I'm using alpine. Know any way to explicitly set another encoding such 
that it does -not- get converted on the other end? I tried the 
character-set and charset options but they didn't help at all.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] general: convert "kernel" subdirectory to UTF-8

2007-04-17 Thread Andreas Schwab
"John Anthony Kazos Jr." <[EMAIL PROTECTED]> writes:

> I can't get my mail client to send in ISO-8859-1 instead of UTF-8, so the 

Actually your mail is encoded in iso-8859-15.

Andreas.

-- 
Andreas Schwab, SuSE Labs, [EMAIL PROTECTED]
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] general: convert "kernel" subdirectory to UTF-8

2007-04-17 Thread John Anthony Kazos Jr.
From: John Anthony Kazos Jr. <[EMAIL PROTECTED]>

Convert the "kernel" subdirectory of the tree to UTF-8. The only file 
modified is .

Signed-off-by: John Anthony Kazos Jr. <[EMAIL PROTECTED]>

---

I can't get my mail client to send in ISO-8859-1 instead of UTF-8, so the 
actual patch is attached in octet-stream format. The below patch is just 
for reference and will almost certainly NOT work.

Also, since the patch includes both encodings, whichever encoding you 
select while viewing it will display one correct and one garbled line. 
However, the bytecodes -are- correct.

diff -uprN linux-2.6.21-rc7.orig/kernel/sys.c linux-2.6.21-rc7.mod/kernel/sys.c
--- linux-2.6.21-rc7.orig/kernel/sys.c  2007-04-17 11:42:13.0 -0400
+++ linux-2.6.21-rc7.mod/kernel/sys.c   2007-04-17 13:16:59.0 -0400
@@ -1292,7 +1292,7 @@ asmlinkage long sys_setfsuid(uid_t uid)
 }
 
 /*
- * Samma på svenska..
+ * Samma på svenska..
  */
 asmlinkage long sys_setfsgid(gid_t gid)
 {

patch-kernel.bin
Description: Binary data


[PATCH] general: convert kernel subdirectory to UTF-8

2007-04-17 Thread John Anthony Kazos Jr.
From: John Anthony Kazos Jr. [EMAIL PROTECTED]

Convert the kernel subdirectory of the tree to UTF-8. The only file 
modified is kernel/sys.c.

Signed-off-by: John Anthony Kazos Jr. [EMAIL PROTECTED]

---

I can't get my mail client to send in ISO-8859-1 instead of UTF-8, so the 
actual patch is attached in octet-stream format. The below patch is just 
for reference and will almost certainly NOT work.

Also, since the patch includes both encodings, whichever encoding you 
select while viewing it will display one correct and one garbled line. 
However, the bytecodes -are- correct.

diff -uprN linux-2.6.21-rc7.orig/kernel/sys.c linux-2.6.21-rc7.mod/kernel/sys.c
--- linux-2.6.21-rc7.orig/kernel/sys.c  2007-04-17 11:42:13.0 -0400
+++ linux-2.6.21-rc7.mod/kernel/sys.c   2007-04-17 13:16:59.0 -0400
@@ -1292,7 +1292,7 @@ asmlinkage long sys_setfsuid(uid_t uid)
 }
 
 /*
- * Samma på svenska..
+ * Samma på svenska..
  */
 asmlinkage long sys_setfsgid(gid_t gid)
 {

patch-kernel.bin
Description: Binary data


Re: [PATCH] general: convert kernel subdirectory to UTF-8

2007-04-17 Thread Andreas Schwab
John Anthony Kazos Jr. [EMAIL PROTECTED] writes:

 I can't get my mail client to send in ISO-8859-1 instead of UTF-8, so the 

Actually your mail is encoded in iso-8859-15.

Andreas.

-- 
Andreas Schwab, SuSE Labs, [EMAIL PROTECTED]
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
And now for something completely different.
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] general: convert kernel subdirectory to UTF-8

2007-04-17 Thread John Anthony Kazos Jr.
  I can't get my mail client to send in ISO-8859-1 instead of UTF-8, so the 
 
 Actually your mail is encoded in iso-8859-15.

Is it? I've sent a bajillion test messages to myself and they all ended up 
UTF-8, meaning it actually recursively encoded the original UTF-8 in the 
message.

I'm using alpine. Know any way to explicitly set another encoding such 
that it does -not- get converted on the other end? I tried the 
character-set and charset options but they didn't help at all.
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] general: convert kernel subdirectory to UTF-8

2007-04-17 Thread Dmitry Torokhov
On Tuesday 17 April 2007 13:19, John Anthony Kazos Jr. wrote:
  /*
 - * Samma på svenska..
 + * Samma på svenska..
   */

Translating this comment into english so more people could understand it
would be better option.

-- 
Dmitry
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/