diff options
| -rw-r--r-- | lisp/ChangeLog | 25 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 2 |
2 files changed, 26 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5dad1a4066b..8debfa5327e 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,28 @@ | |||
| 1 | 2005-09-29 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * faces.el: Rearrange face definitions to be in the same order as | ||
| 4 | their face descriptions in "(emacs)Standard Faces". | ||
| 5 | |||
| 6 | * isearch.el (isearch, lazy-highlight): Add group `basic-faces'. | ||
| 7 | |||
| 8 | * tooltip.el (tooltip): Add group `basic-faces'. | ||
| 9 | |||
| 10 | * buff-menu.el (Buffer-menu-buffer): Remove group | ||
| 11 | `font-lock-highlighting-faces'. | ||
| 12 | |||
| 13 | * progmodes/compile.el (compilation-error, compilation-warning) | ||
| 14 | (compilation-info, compilation-line-number, compilation-column-number): | ||
| 15 | Change group from `font-lock-highlighting-faces' to `compilation'. | ||
| 16 | |||
| 17 | * progmodes/vhdl-mode.el (vhdl-font-lock-prompt-face) | ||
| 18 | (vhdl-font-lock-attribute-face, vhdl-font-lock-enumvalue-face) | ||
| 19 | (vhdl-font-lock-function-face, vhdl-font-lock-directive-face) | ||
| 20 | (vhdl-font-lock-reserved-words-face) | ||
| 21 | (vhdl-font-lock-translate-off-face, syntax-alist): Remove group | ||
| 22 | `font-lock-highlighting-faces'. | ||
| 23 | |||
| 24 | * cus-edit.el (custom-buffer-sort-alphabetically): Default to nil. | ||
| 25 | |||
| 1 | 2005-09-28 Kim F. Storm <storm@cua.dk> | 26 | 2005-09-28 Kim F. Storm <storm@cua.dk> |
| 2 | 27 | ||
| 3 | * emulation/cua-base.el: Set CUA move property on additional commands: | 28 | * emulation/cua-base.el: Set CUA move property on additional commands: |
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index eb6656a426d..8f88e4d049c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -670,7 +670,7 @@ If `last', order groups after non-groups." | |||
| 670 | :type 'boolean | 670 | :type 'boolean |
| 671 | :group 'custom-browse) | 671 | :group 'custom-browse) |
| 672 | 672 | ||
| 673 | (defcustom custom-buffer-sort-alphabetically t | 673 | (defcustom custom-buffer-sort-alphabetically nil |
| 674 | "If non-nil, sort members of each customization group alphabetically." | 674 | "If non-nil, sort members of each customization group alphabetically." |
| 675 | :type 'boolean | 675 | :type 'boolean |
| 676 | :group 'custom-buffer) | 676 | :group 'custom-buffer) |