diff options
| author | Luc Teirlinck | 2004-08-08 17:14:58 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-08-08 17:14:58 +0000 |
| commit | 8392e13818eadb0645893eaf991d9cae429f2e78 (patch) | |
| tree | 98461b36cfdb3da9ee4c2004759897d251e44dbd | |
| parent | c90e7e43b102a9732ea4ef7a292f51cec881d463 (diff) | |
| download | emacs-8392e13818eadb0645893eaf991d9cae429f2e78.tar.gz emacs-8392e13818eadb0645893eaf991d9cae429f2e78.zip | |
*** empty log message ***
| -rw-r--r-- | etc/NEWS | 2 | ||||
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | src/ChangeLog | 4 |
3 files changed, 14 insertions, 3 deletions
| @@ -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 |
| 2192 | been renamed to `disabled-command-function', The variable | 2192 | been 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 @@ | |||
| 1 | 2004-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 | |||
| 1 | 2004-08-07 Satyaki Das <satyaki@theforce.stanford.edu> (tiny change) | 12 | 2004-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 @@ | |||
| 1 | 2004-08-08 Luc Teirlinck <teirllm@auburn.edu> | 1 | 2004-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 | ||
| 9 | 2004-08-07 Luc Teirlinck <teirllm@auburn.edu> | 9 | 2004-08-07 Luc Teirlinck <teirllm@auburn.edu> |