aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2004-08-08 17:14:58 +0000
committerLuc Teirlinck2004-08-08 17:14:58 +0000
commit8392e13818eadb0645893eaf991d9cae429f2e78 (patch)
tree98461b36cfdb3da9ee4c2004759897d251e44dbd
parentc90e7e43b102a9732ea4ef7a292f51cec881d463 (diff)
downloademacs-8392e13818eadb0645893eaf991d9cae429f2e78.tar.gz
emacs-8392e13818eadb0645893eaf991d9cae429f2e78.zip
*** empty log message ***
-rw-r--r--etc/NEWS2
-rw-r--r--lisp/ChangeLog11
-rw-r--r--src/ChangeLog4
3 files changed, 14 insertions, 3 deletions
diff --git a/etc/NEWS b/etc/NEWS
index c85ec30bb03..2d8b10e81ec 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -2189,7 +2189,7 @@ configuration files.
2189 2189
2190+++ 2190+++
2191** Both the variable and the function `disabled-command-hook' have 2191** Both the variable and the function `disabled-command-hook' have
2192been renamed to `disabled-command-function', The variable 2192been renamed to `disabled-command-function'. The variable
2193`disabled-command-hook' has been kept as an obsolete alias. 2193`disabled-command-hook' has been kept as an obsolete alias.
2194 2194
2195** Function `compute-motion' now calculates the usable window 2195** Function `compute-motion' now calculates the usable window
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c59e0003f94..afa583fd9ef 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,14 @@
12004-08-08 Luc Teirlinck <teirllm@auburn.edu>
2
3 * subr.el (global-unset-key, local-unset-key): Doc fixes.
4
5 * novice.el (disabled-command-function): New variable renamed from
6 `disabled-command-hook'.
7 (disabled-command-hook): Keep the _variable_ as alias for
8 `disabled-command-function' and make obsolete.
9 (disabled-command-function): Function renamed from
10 `disabled-command-hook'. Adapt code to name change of the variable.
11
12004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change) 122004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change)
2 13
3 * simple.el (completion-root-regexp): New defvar. 14 * simple.el (completion-root-regexp): New defvar.
diff --git a/src/ChangeLog b/src/ChangeLog
index 7ec9ec257d8..248d5daa92e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,9 +1,9 @@
12004-08-08 Luc Teirlinck <teirllm@auburn.edu> 12004-08-08 Luc Teirlinck <teirllm@auburn.edu>
2 2
3 * keyboard.c: Declare Qdisabled_command_function instead of 3 * keyboard.c: Declare Qdisabled_command_function instead of
4 Qdisabled_command_command. 4 Qdisabled_command_hook.
5 (Fcommand_execute): Use Qdisabled_command_function instead of 5 (Fcommand_execute): Use Qdisabled_command_function instead of
6 Qdisabled_command_command. 6 Qdisabled_command_hook.
7 (syms_of_keyboard): Ditto. 7 (syms_of_keyboard): Ditto.
8 8
92004-08-07 Luc Teirlinck <teirllm@auburn.edu> 92004-08-07 Luc Teirlinck <teirllm@auburn.edu>