OBS User unknown 2007-08-28 17:24:43 +00:00 committed by Git OBS Bridge
parent 673355a56c
commit 629d3cf9f7
4 changed files with 23 additions and 3 deletions

View File

@ -295,6 +295,11 @@
(set-keyboard-coding-system (intern tmp))
(set-terminal-coding-system (intern tmp))
;; XEmacs 21.5.16 needs this to be able to use non-ASCII file names:
;; (according to Aidan, file-name-coding-system is ignored for
;; XEmacs >= 21.5.26. One may use
;; (define-coding-system-alias 'file-name 'utf-8)
;; instead but even this should not be necessary if
;; LC_CTYPE is already an UTF-8 locale).
(if (and (string-match "XEmacs" emacs-version)
(emacs-version>= 21 5 6))
(setq file-name-coding-system (intern tmp)))

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Aug 27 15:25:01 CEST 2007 - mfabian@suse.de
- Bugzilla #299941: dont use the obsolete GNU Emacs icon, use
an XEmacs specific icon instead.
-------------------------------------------------------------------
Tue Aug 21 17:45:56 CEST 2007 - mfabian@suse.de

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f7729621c961187d533143d795d7c50a492070c47548c6406985ebdcf5864ff8
size 2152
oid sha256:b7b39100b15b0fea1e44c4980d9984f77e08407c733742e9b9ae10801c7ff911
size 968

View File

@ -37,7 +37,7 @@ Requires: xemacs-info xemacs-packages ctags
Conflicts: gnuserv
Autoreqprov: on
Version: 21.5.28.20070807
Release: 7
Release: 12
Summary: XEmacs
BuildRoot: %{_tmppath}/%{name}-%{version}-build
# Howto get the cvs tree of XEmacs:
@ -461,6 +461,12 @@ do
perl -pi -e "s|(;;; from file )$RPM_BUILD_ROOT(/usr/share/xemacs/.*)|\1$RPM_BUILD_ROOT_REPLACEMENT\2|" $i
done
#
# gzip .el files: (doesn't completely work for me yet -> later)
#for i in $(find $RPM_BUILD_ROOT -name "*.el")
#do
# gzip --best $i
#done
#
( find $RPM_BUILD_ROOT \
\( \( \( -not -type d \) -a \( -not -type l \) \) -printf '%%p\n' \) -o \
\( -type d -printf '%%p/\n' \) -o \( -type l -printf '%%p\n' \) ; \
@ -575,6 +581,9 @@ rm -rf $RPM_BUILD_ROOT
%dir /usr/share/xemacs/site-packages/lisp/term/
%changelog
* Mon Aug 27 2007 - mfabian@suse.de
- Bugzilla #299941: dont use the obsolete GNU Emacs icon, use
an XEmacs specific icon instead.
* Tue Aug 21 2007 - mfabian@suse.de
- Bugzilla #301352: fix wrong incrementing in macros in mule-ccl.c.
* Tue Aug 07 2007 - mfabian@suse.de