emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/coding.c


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/coding.c
Date: Tue, 08 Apr 2003 07:27:28 -0400

Index: emacs/src/coding.c
diff -c emacs/src/coding.c:1.274 emacs/src/coding.c:1.275
*** emacs/src/coding.c:1.274    Tue Apr  8 06:46:31 2003
--- emacs/src/coding.c  Tue Apr  8 07:27:28 2003
***************
*** 6397,6402 ****
--- 6397,6422 ----
                               STRING_MULTIBYTE (string));
  }
  
+ static int coding_system_accept_latin_extra_p P_ ((Lisp_Object));
+ 
+ static int
+ coding_system_accept_latin_extra_p (coding_system)
+      Lisp_Object coding_system;
+ {
+   Lisp_Object coding_spec, coding_type, flags;
+ 
+   coding_spec = Fget (coding_system, Qcoding_system);
+   if (! VECTORP (coding_spec)
+       || ASIZE (coding_spec) != 5)
+     return 0;
+   coding_type = AREF (coding_spec, 0);
+   if (! EQ (coding_type, make_number (2)))
+     return 0;
+   flags = AREF (coding_spec, 4);
+   return (VECTORP (flags)
+         && ! NILP (AREF (flags, CODING_FLAG_ISO_LATIN_EXTRA)));
+ }  
+ 
  /*  Subroutine for Fsafe_coding_systems_region_internal.
  
      Return a list of coding systems that safely encode the multibyte
***************
*** 6444,6450 ****
        for (prev = tail = safe_codings; CONSP (tail); tail = XCDR (tail))
        {
          val = XCAR (tail);
!         if (NILP (Faref (XCDR (val), ch)))
            {
              /* Exclued this coding system from SAFE_CODINGS.  */
              if (EQ (tail, safe_codings))
--- 6464,6474 ----
        for (prev = tail = safe_codings; CONSP (tail); tail = XCDR (tail))
        {
          val = XCAR (tail);
!         if (NILP (Faref (XCDR (val), ch))
!             && !(SINGLE_BYTE_CHAR_P (c)
!                  && VECTORP (Vlatin_extra_code_table)
!                  && ! NILP (AREF (Vlatin_extra_code_table, c))
!                  && coding_system_accept_latin_extra_p (XCAR (val))))
            {
              /* Exclued this coding system from SAFE_CODINGS.  */
              if (EQ (tail, safe_codings))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]