components/tcsh/patches/005.locale.patch
author Matt Keenan <matt.keenan@oracle.com>
Fri, 19 Jun 2015 09:35:02 +0100
branchs11-update
changeset 4508 d8924d870370
parent 3243 1359280d9099
permissions -rw-r--r--
PSARC 2015/172 OpenStack Ironic (OpenStack Bare Metal Provisioning Service) PSARC 2015/070 pecan - Lightweight Python web-framework PSARC 2015/071 PyCA Python Cryptography PSARC 2015/170 OpenStack client for Ironic (Bare Metal Provisioning) PSARC 2015/171 scp - python secure copy PSARC 2015/196 singledispatch - Single-dispatch generic functions for Python PSARC 2015/197 logutils - Set of handlers for standard Python logging library PSARC 2015/198 Support for enumerations in Python 2.6 and 2.7 PSARC 2015/250 paramiko - SSHv2 protocol implementation in Python 20547142 Request to integrate Ironic into userland 17502639 The Python paramiko module should be added to Userland 20172780 The Python module scp should be added to Userland 20180376 The Python module ironicclient should be added to Userland 20182588 The Python module pecan should be added to Userland 20465525 The PyCA cryptography module should be added to Userland 20904396 The Python module singledispatch should be added to Userland 20904413 The Python module logutils should be added to Userland 20917993 The Python enum34 module should be added to Userland
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3243
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     1
--- tcsh-6.18.01/sh.char.h.orig	Thu Apr 17 10:20:22 2014
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     2
+++ tcsh-6.18.01/sh.char.h	Thu Apr 17 10:20:38 2014
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     3
@@ -167,9 +167,9 @@
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     4
 #define iscmdmeta(c)	cmap((c), _CMD)
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     5
 #ifdef WIDE_STRINGS
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     6
 #define letter(c)	(((c) & QUOTE) ? 0 :  \
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     7
-			 (iswalpha((tcshuc) (c)) || (c) == '_'))
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     8
+			 (iswalpha((c)) || (c) == '_'))
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
     9
 #define alnum(c)	(((c) & QUOTE) ? 0 :  \
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
    10
-		         (iswalnum((tcshuc) (c)) || (c) == '_'))
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
    11
+		         (iswalnum((c)) || (c) == '_'))
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
    12
 #else
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
    13
 #define letter(c)	(((Char)(c) & QUOTE) ? 0 :  \
1359280d9099 19000542 tcsh represents garbled letters to standard error after installing SRU17.5
Mike Sullivan <Mike.Sullivan@Oracle.COM>
parents:
diff changeset
    14
 			 ((isalpha((tcshuc) (c)) && !(cmap((c), _PUN))) \