]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/which-func.el (which-func-modes): Change default.
authorStefan Monnier <monnier@iro.umontreal.ca>
Sat, 14 Apr 2012 02:31:50 +0000 (22:31 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sat, 14 Apr 2012 02:31:50 +0000 (22:31 -0400)
etc/NEWS
lisp/ChangeLog
lisp/progmodes/which-func.el

index 23d6dc0cd89108b660e88c6af4003dfeaa60de00..4ec33eae625fe04384822cbc2127aa613970e12e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -50,6 +50,8 @@ character when doing minibuffer filename prompts.
 \f
 * 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.
 
index 7ca8751216f06cb7eba6fdcb5aa00c0395f916cb..858c4285c7a44300427f5cc15405a6b5434bb988 100644 (file)
@@ -1,3 +1,7 @@
+2012-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/which-func.el (which-func-modes): Change default.
+
 2012-04-14  Kim F. Storm  <storm@cua.dk>
 
        * emulation/cua-base.el (cua-exchange-point-and-mark): Just call
@@ -94,8 +98,7 @@
 2012-04-13  Ken Brown  <kbrown@cornell.edu>
 
        * 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.
 
index f1c65272625a72ffe27301ada4e2657adeb75c00..bacc542a388b340c6f50ca5851ca5d50531c68a6 100644 (file)
   :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."