[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107900: * lisp/progmodes/which-func.
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107900: * lisp/progmodes/which-func.el (which-func-modes): Change default. |
Date: |
Fri, 13 Apr 2012 22:31:50 -0400 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107900
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Fri 2012-04-13 22:31:50 -0400
message:
* lisp/progmodes/which-func.el (which-func-modes): Change default.
modified:
etc/NEWS
lisp/ChangeLog
lisp/progmodes/which-func.el
=== modified file 'etc/NEWS'
--- a/etc/NEWS 2012-04-13 21:43:03 +0000
+++ b/etc/NEWS 2012-04-14 02:31:50 +0000
@@ -50,6 +50,8 @@
* Changes in Specialized Modes and Packages in Emacs 24.2
+** which-function-mode now applies to all applicable major modes by default.
+
** erc will look up server/channel names via auth-source and use the
channel keys found, if any.
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog 2012-04-14 01:46:06 +0000
+++ b/lisp/ChangeLog 2012-04-14 02:31:50 +0000
@@ -1,3 +1,7 @@
+2012-04-14 Stefan Monnier <address@hidden>
+
+ * progmodes/which-func.el (which-func-modes): Change default.
+
2012-04-14 Kim F. Storm <address@hidden>
* emulation/cua-base.el (cua-exchange-point-and-mark): Just call
@@ -94,8 +98,7 @@
2012-04-13 Ken Brown <address@hidden>
* net/browse-url.el (browse-url-file-url): Remove Cygwin hack;
- this is no longer needed now that cygstart understands file://
- URLs.
+ this is no longer needed now that cygstart understands file:// URLs.
(browse-url-filename-alist): For the same reason, don't modify
file:// URLs on Cygwin.
=== modified file 'lisp/progmodes/which-func.el'
--- a/lisp/progmodes/which-func.el 2012-04-14 01:33:08 +0000
+++ b/lisp/progmodes/which-func.el 2012-04-14 02:31:50 +0000
@@ -72,10 +72,10 @@
:group 'tools
:version "20.3")
-(defcustom which-func-modes
- '(emacs-lisp-mode c-mode c++-mode objc-mode perl-mode cperl-mode python-mode
- makefile-mode sh-mode fortran-mode f90-mode ada-mode
- diff-mode)
+(defcustom which-func-modes t
+ ;; '(emacs-lisp-mode c-mode c++-mode objc-mode perl-mode cperl-mode
python-mode
+ ;; makefile-mode sh-mode fortran-mode f90-mode ada-mode
+ ;; diff-mode)
"List of major modes for which Which Function mode should be used.
For other modes it is disabled. If this is equal to t,
then Which Function mode is enabled in any major mode that supports it."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107900: * lisp/progmodes/which-func.el (which-func-modes): Change default.,
Stefan Monnier <=