diff options
| author | Chong Yidong | 2007-07-05 18:39:02 +0000 |
|---|---|---|
| committer | Chong Yidong | 2007-07-05 18:39:02 +0000 |
| commit | 59cd708ea480615f00d8b160d8e169989b1381e0 (patch) | |
| tree | 5f6e6d4ceae0867aed63ad05480f558a8d281584 | |
| parent | 76e924221beb1dfce8bf3c6c0d777f51daa65f24 (diff) | |
| download | emacs-59cd708ea480615f00d8b160d8e169989b1381e0.tar.gz emacs-59cd708ea480615f00d8b160d8e169989b1381e0.zip | |
* cus-edit.el (custom-commands): New variable.
(custom-tool-bar-map): New variable. Initialize using
`custom-commands'.
(custom-mode): Use `custom-tool-bar-map'.
(custom-buffer-create-internal): Insert action buttons only if
tool bar is not used. Use `custom-commands'.
(Custom-help, custom-command-apply): New function.
(custom-command-apply, Custom-set, Custom-save)
(Custom-reset-current, Custom-reset-saved, Custom-reset-standard):
Use `custom-command-apply' instead of duplicating code.
(customize-group-other-window): Call `customize-group' instead of
duplicating code.
(customize-face-other-window): Call `customize-face' instead of
duplicating code.
(customize-group, customize-face): Add optional args for opening
in another window.
(custom-variable-tag): Don't inherit `variable-pitch' face.
(custom-group-tag): Inherit `variable-pitch' face.
(custom-variable-value-create): Set documentation indentation.
(custom-group-value-create): Make group name a link, instead of
using an extra "go to group" button.
(custom-prompt-variable, custom-group-set, custom-group-save)
(custom-group-reset-current, custom-group-reset-saved)
(custom-group-reset-standard): Minor cleanup.
| -rw-r--r-- | lisp/ChangeLog | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e808cf75937..c6391decce0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,30 @@ | |||
| 1 | 2007-07-05 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * cus-edit.el (custom-commands): New variable. | ||
| 4 | (custom-tool-bar-map): New variable. Initialize using | ||
| 5 | `custom-commands'. | ||
| 6 | (custom-mode): Use `custom-tool-bar-map'. | ||
| 7 | (custom-buffer-create-internal): Insert action buttons only if | ||
| 8 | tool bar is not used. Use `custom-commands'. | ||
| 9 | (Custom-help, custom-command-apply): New function. | ||
| 10 | (custom-command-apply, Custom-set, Custom-save) | ||
| 11 | (Custom-reset-current, Custom-reset-saved, Custom-reset-standard): | ||
| 12 | Use `custom-command-apply' instead of duplicating code. | ||
| 13 | (customize-group-other-window): Call `customize-group' instead of | ||
| 14 | duplicating code. | ||
| 15 | (customize-face-other-window): Call `customize-face' instead of | ||
| 16 | duplicating code. | ||
| 17 | (customize-group, customize-face): Add optional args for opening | ||
| 18 | in another window. | ||
| 19 | (custom-variable-tag): Don't inherit `variable-pitch' face. | ||
| 20 | (custom-group-tag): Inherit `variable-pitch' face. | ||
| 21 | (custom-variable-value-create): Set documentation indentation. | ||
| 22 | (custom-group-value-create): Make group name a link, instead of | ||
| 23 | using an extra "go to group" button. | ||
| 24 | (custom-prompt-variable, custom-group-set, custom-group-save) | ||
| 25 | (custom-group-reset-current, custom-group-reset-saved) | ||
| 26 | (custom-group-reset-standard): Minor cleanup. | ||
| 27 | |||
| 1 | 2007-06-16 Karl Fogel <kfogel@red-bean.com> | 28 | 2007-06-16 Karl Fogel <kfogel@red-bean.com> |
| 2 | 29 | ||
| 3 | * thingatpt.el (thing-at-point-email-regexp): Don't require two | 30 | * thingatpt.el (thing-at-point-email-regexp): Don't require two |
| @@ -11,13 +38,13 @@ | |||
| 11 | (thing-at-point-email-regexp): New variable. | 38 | (thing-at-point-email-regexp): New variable. |
| 12 | (`email'): Put `bounds-of-thing-at-point' and `thing-at-point' | 39 | (`email'): Put `bounds-of-thing-at-point' and `thing-at-point' |
| 13 | properties on this symbol, with lambda forms for values. | 40 | properties on this symbol, with lambda forms for values. |
| 14 | 41 | ||
| 15 | 2007-06-15 Masatake YAMATO <jet@gyve.org> | 42 | 2007-06-15 Masatake YAMATO <jet@gyve.org> |
| 16 | 43 | ||
| 17 | * vc-bzr.el (vc-bzr-root): Cache the output of shell command | 44 | * vc-bzr.el (vc-bzr-root): Cache the output of shell command |
| 18 | execution. | 45 | execution. |
| 19 | 46 | ||
| 20 | * vc.el (vc-dired-hook): Check the backend returned from | 47 | * vc.el (vc-dired-hook): Check the backend returned from |
| 21 | `vc-responsible-backend' can really handle `subdir'. | 48 | `vc-responsible-backend' can really handle `subdir'. |
| 22 | 49 | ||
| 23 | 2007-06-15 Chong Yidong <cyd@stupidchicken.com> | 50 | 2007-06-15 Chong Yidong <cyd@stupidchicken.com> |