- do not setup frame-title-format in default.el, since it will override
setting by users (Henrik Bakken, 134520) - emacs-el no longer requires emacs for -nox users (Lars Hupfeldt Nielsen, 134479) - condition calling global-font-lock-mode in default .emacs in case xemacs loads it
This commit is contained in:
parent
fb8e0c09cc
commit
883764ae9a
@ -11,9 +11,6 @@
|
|||||||
;; enable wheelmouse support by default
|
;; enable wheelmouse support by default
|
||||||
(mwheel-install)
|
(mwheel-install)
|
||||||
;; make switching frames works properly under the default click-to-focus
|
;; make switching frames works properly under the default click-to-focus
|
||||||
(setq focus-follows-mouse nil)
|
(setq focus-follows-mouse nil))
|
||||||
;; default to better frame titles
|
|
||||||
(setq frame-title-format
|
|
||||||
(concat "%b - emacs@" system-name)))
|
|
||||||
|
|
||||||
(auto-compression-mode t)
|
(auto-compression-mode t)
|
||||||
|
@ -4,7 +4,12 @@
|
|||||||
;; (setq inhibit-default-init t)
|
;; (setq inhibit-default-init t)
|
||||||
|
|
||||||
;; turn on font-lock mode
|
;; turn on font-lock mode
|
||||||
(global-font-lock-mode t)
|
(when (fboundp 'global-font-lock-mode)
|
||||||
|
(global-font-lock-mode t))
|
||||||
|
|
||||||
;; enable visual feedback on selections
|
;; enable visual feedback on selections
|
||||||
;(setq transient-mark-mode t)
|
;(setq transient-mark-mode t)
|
||||||
|
|
||||||
|
;; default to better frame titles
|
||||||
|
(setq frame-title-format
|
||||||
|
(concat "%b - emacs@" system-name))
|
||||||
|
11
emacs.spec
11
emacs.spec
@ -5,7 +5,7 @@
|
|||||||
Summary: GNU Emacs text editor
|
Summary: GNU Emacs text editor
|
||||||
Name: emacs
|
Name: emacs
|
||||||
Version: 21.3
|
Version: 21.3
|
||||||
Release: 15
|
Release: 16
|
||||||
License: GPL
|
License: GPL
|
||||||
URL: http://www.gnu.org/software/emacs/
|
URL: http://www.gnu.org/software/emacs/
|
||||||
Group: Applications/Editors
|
Group: Applications/Editors
|
||||||
@ -97,7 +97,6 @@ This package contains all the common files needed by emacs or emacs-nox.
|
|||||||
%package el
|
%package el
|
||||||
Summary: Emacs Lisp source files included with Emacs.
|
Summary: Emacs Lisp source files included with Emacs.
|
||||||
Group: Applications/Editors
|
Group: Applications/Editors
|
||||||
Requires: emacs = %{version}
|
|
||||||
|
|
||||||
%description el
|
%description el
|
||||||
Emacs-el contains the emacs-elisp sources for many of the elisp
|
Emacs-el contains the emacs-elisp sources for many of the elisp
|
||||||
@ -330,6 +329,14 @@ fi
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Oct 15 2004 Jens Petersen <petersen@redhat.com> - 21.3-16
|
||||||
|
- do not setup frame-title-format in default.el, since it will override
|
||||||
|
setting by users (Henrik Bakken, 134520)
|
||||||
|
- emacs-el no longer requires emacs for the sake of -nox users
|
||||||
|
(Lars Hupfeldt Nielsen, 134479)
|
||||||
|
- condition calling of global-font-lock-mode in default .emacs
|
||||||
|
in case xemacs should happen to load it
|
||||||
|
|
||||||
* Wed Sep 29 2004 Jens Petersen <petersen@redhat.com> - 21.3-15
|
* Wed Sep 29 2004 Jens Petersen <petersen@redhat.com> - 21.3-15
|
||||||
- cleanup and update .desktop file
|
- cleanup and update .desktop file
|
||||||
- make emacs not appear in the desktop menu (Seth Nickell,132567)
|
- make emacs not appear in the desktop menu (Seth Nickell,132567)
|
||||||
|
Loading…
Reference in New Issue
Block a user