- add mule-cmd.el-X11-locale.alias-173781.patch to correct location of X11

locale.alias file (Paul Dickson, #173781)
- fix autoload of php-mode in php-mode-init.el (Christopher Beland,
    #179484)
This commit is contained in:
Jens Petersen 2006-02-03 08:26:08 +00:00
parent 28a1eb11df
commit 44bc50f825
2 changed files with 11 additions and 2 deletions

View File

@ -11,7 +11,7 @@ ExcludeArch: ppc64
Summary: GNU Emacs text editor
Name: emacs
Version: 21.4
Release: 11
Release: 12
License: GPL
URL: http://www.gnu.org/software/emacs/
Group: Applications/Editors
@ -125,6 +125,7 @@ Patch121: python-completion-ignored-extensions.dpatch
Patch122: save-buffer.dpatch
Patch123: smtpmail-cvs-update.patch
%endif
Patch124: mule-cmd.el-X11-locale.alias-173781.patch
%description
Emacs is a powerful, customizable, self-documenting, modeless text
@ -261,6 +262,8 @@ rm lisp/finder-inf.el lisp/play/tetris.el*
# smtpmail update
%patch123 -p1
%endif
# locale.alias path
%patch124 -p1
# install rest of site-lisp files
( cd site-lisp
@ -535,6 +538,11 @@ fi
%endif
%changelog
* Fri Feb 3 2006 Jens Petersen <petersen@redhat.com> - 21.4-12
- add mule-cmd.el-X11-locale.alias-173781.patch to correct location of X11
locale.alias file (Paul Dickson, #173781)
- fix autoload of php-mode in php-mode-init.el (Christopher Beland, #179484)
* Wed Dec 14 2005 Jens Petersen <petersen@redhat.com> - 21.4-11
- avoid building with -fstack-protector on i386 to prevent crashing
(Jonathan Kamens, #174730)

View File

@ -1,6 +1,7 @@
;; Use php-mode for .php,.php3,.php4 and .phtml files
(autoload 'php-mode "php-mode")
(autoload 'php-mode "php-mode" "Major mode for editing PHP code." t)
(add-to-list 'auto-mode-alist
'("\\.php[34]\\'\\|\\.php\\'\\|\\.phtml\\'" . php-mode))