[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/simple.el,v
From: |
Juri Linkov |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/simple.el,v |
Date: |
Wed, 30 Jul 2008 16:38:29 +0000 |
CVSROOT: /sources/emacs
Module name: emacs
Changes by: Juri Linkov <jurta> 08/07/30 16:38:29
Index: simple.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/simple.el,v
retrieving revision 1.939
retrieving revision 1.940
diff -u -b -r1.939 -r1.940
--- simple.el 27 Jul 2008 18:24:31 -0000 1.939
+++ simple.el 30 Jul 2008 16:38:29 -0000 1.940
@@ -687,13 +687,14 @@
(eq overwrite-mode 'overwrite-mode-binary))
(read-quoted-char)
(read-char)))))
- ;; Assume character codes 0240 - 0377 stand for characters in some
- ;; single-byte character set, and convert them to Emacs
- ;; characters.
- (if (and enable-multibyte-characters
- (>= char ?\240)
- (<= char ?\377))
- (setq char (unibyte-char-to-multibyte char)))
+ ;; This used to assume character codes 0240 - 0377 stand for
+ ;; characters in some single-byte character set, and converted them
+ ;; to Emacs characters. But in 23.1 this feature is deprecated
+ ;; in favor of inserting the corresponding Unicode characters.
+ ;; (if (and enable-multibyte-characters
+ ;; (>= char ?\240)
+ ;; (<= char ?\377))
+ ;; (setq char (unibyte-char-to-multibyte char)))
(if (> arg 0)
(if (eq overwrite-mode 'overwrite-mode-binary)
(delete-char arg)))
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/11
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/11
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/12
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Adrian Robert, 2008/07/15
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/17
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/20
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/20
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Chong Yidong, 2008/07/21
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Dan Nicolaescu, 2008/07/27
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v,
Juri Linkov <=
- [Emacs-diffs] Changes to emacs/lisp/simple.el,v, Juri Linkov, 2008/07/31