auto-import changelog data from emacs-21.2-16.src.rpm

Fri Aug 09 2002 Trond Eivind Glomsrd <teg@redhat.com> 21.2-16
- Handle UTF-8 input (#70855).
This commit is contained in:
cvsdist 2004-09-09 04:34:58 +00:00
parent a9afebd286
commit 272bafa646
2 changed files with 18 additions and 1 deletions

View File

@ -1,7 +1,7 @@
Summary: The libraries needed to run the GNU Emacs text editor.
Name: emacs
Version: 21.2
Release: 15
Release: 16
License: GPL
URL: http://www.gnu.org/software/emacs/
Group: Applications/Editors
@ -255,6 +255,9 @@ fi
%dir /usr/share/emacs/%{version}/leim
%changelog
* Fri Aug 9 2002 Trond Eivind Glomsrød <teg@redhat.com> 21.2-16
- Handle UTF-8 input (#70855).
* Tue Aug 6 2002 Trond Eivind Glomsrød <teg@redhat.com> 21.2-15
- Don't use canna by default (# 70870)

View File

@ -17,3 +17,17 @@
(require 'rpm-spec-mode)
(setq auto-mode-alist
(cons '("\\.spec$" . rpm-spec-mode) auto-mode-alist))
;; Enable utf-8 in locales using utf-8. In RHL, all of these end in .UTF-8
;; The utf-8 support in emacs is limited, problems can be expected - especially
;; outside latin1
(cond ((equal (substring (concat " " (getenv "LANG")) -5) "UTF-8")
(setq locale-coding-system 'utf-8)
(set-terminal-coding-system 'utf-8)
(set-keyboard-coding-system 'utf-8)
(set-selection-coding-system 'utf-8)
(prefer-coding-system 'utf-8)))