emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/international/ucs-tables.el


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/lisp/international/ucs-tables.el
Date: Wed, 12 Dec 2001 14:17:44 -0500

Index: emacs/lisp/international/ucs-tables.el
diff -c emacs/lisp/international/ucs-tables.el:1.4 
emacs/lisp/international/ucs-tables.el:1.5
*** emacs/lisp/international/ucs-tables.el:1.4  Fri Dec  7 12:39:26 2001
--- emacs/lisp/international/ucs-tables.el      Wed Dec 12 14:17:44 2001
***************
*** 1276,1301 ****
  See also command `unify-8859-on-decoding-mode'."
    :group 'mule
    :global t
    :init-value nil
    (if unify-8859-on-encoding-mode
!       (set-char-table-parent standard-translation-table-for-decode
!                        ucs-mule-8859-to-mule-unicode)
!     (set-char-table-parent standard-translation-table-for-decode nil)))
  
  ;;;###autoload
  (define-minor-mode unify-8859-on-decoding-mode
!   "Set up translation tables for unifying ISO 8859 characters on decoding.
! On decoding, i.e. input operations, non-ASCII characters from the
  built-in ISO 8859 charsets are unified by mapping them into the
  `iso-latin-1' and `mule-unicode-0100-24ff' charsets.
  
  See also command `unify-8859-on-encoding-mode'."
    :group 'mule
    :global t
    :init-value nil
    (if unify-8859-on-decoding-mode
!       (ucs-unify-8859 t)
!     (ucs-fragment-8859 t)))
  
  (defun ucs-insert (arg)
    "Insert the Emacs character representation of the given Unicode.
--- 1276,1305 ----
  See also command `unify-8859-on-decoding-mode'."
    :group 'mule
    :global t
+   :version 21.3                               ; who knows...?
    :init-value nil
    (if unify-8859-on-encoding-mode
!       (ucs-unify-8859 t)
!     (ucs-fragment-8859 t)))
  
  ;;;###autoload
  (define-minor-mode unify-8859-on-decoding-mode
!   "Set up translation table for unifying ISO 8859 characters on decoding.
! On decoding -- i.e. input operations -- non-ASCII characters from the
  built-in ISO 8859 charsets are unified by mapping them into the
  `iso-latin-1' and `mule-unicode-0100-24ff' charsets.
  
+ This sets the parent of `standard-translation-table-for-decode'.
+ 
  See also command `unify-8859-on-encoding-mode'."
    :group 'mule
    :global t
+   :version 21.3                               ; who knows...?
    :init-value nil
    (if unify-8859-on-decoding-mode
!       (set-char-table-parent standard-translation-table-for-decode
!                            ucs-mule-8859-to-mule-unicode)
!     (set-char-table-parent standard-translation-table-for-decode nil)))
  
  (defun ucs-insert (arg)
    "Insert the Emacs character representation of the given Unicode.



reply via email to

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