aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/progmodes/which-func.el4
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ec3eacfbc38..704efea7135 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12012-01-07 Juanma Barranquero <lekktu@gmail.com>
2
3 * progmodes/which-func.el (which-func-mode): Turn into a
4 non-interactive function and mark as obsolete (bug#10428).
5
12012-01-06 Chong Yidong <cyd@gnu.org> 62012-01-06 Chong Yidong <cyd@gnu.org>
2 7
3 * files.el (hack-dir-local-variables-non-file-buffer): Add doc. 8 * files.el (hack-dir-local-variables-non-file-buffer): Add doc.
diff --git a/lisp/progmodes/which-func.el b/lisp/progmodes/which-func.el
index 59933a944d5..721c610517a 100644
--- a/lisp/progmodes/which-func.el
+++ b/lisp/progmodes/which-func.el
@@ -229,7 +229,9 @@ It creates the Imenu index for the buffer, if necessary."
229 (error "Error in which-func-update: %S" info)))))) 229 (error "Error in which-func-update: %S" info))))))
230 230
231;;;###autoload 231;;;###autoload
232(defalias 'which-func-mode 'which-function-mode) 232(defun which-func-mode (&optional arg)
233 (which-function-mode arg))
234(make-obsolete 'which-func-mode 'which-function-mode "24.1")
233 235
234(defvar which-func-update-timer nil) 236(defvar which-func-update-timer nil)
235 237