summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
Commit message (Collapse)AuthorAgeFilesLines
* (minibuffer, auto-save): Fix typos in docstrings.Juanma Barranquero2007-04-131-2/+2
|
* (customize-save-variable): Clear customized-value property (savedChong Yidong2007-03-051-6/+2
| | | | | values are now put in theme-value property). (customize-set-variable): Doc fix.
* (custom-save-all): Canonicalize custom-file before storing it inEli Zaretskii2007-02-231-5/+7
| | | | recentf-exclude.
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* (customize-unsaved): Renamed from customize-customized.Richard M. Stallman2007-01-021-4/+6
| | | | | Change messages accordingly. (customize-customized): Now alias.
* (custom-browse-sort-alphabetically, custom-buffer-sort-alphabetically)Richard M. Stallman2006-12-261-3/+6
| | | | (custom-menu-sort-alphabetically): Doc fixes. Add autoloads.
* (custom-save-all): Use find-file-visit-truename for visiting the custom file.Richard M. Stallman2006-11-121-1/+2
|
* (hook): Fix typos in docstring.Juanma Barranquero2006-11-061-2/+2
|
* (custom-mode-map): Move defvar above code using it.Chong Yidong2006-11-061-19/+35
| | | | | (custom-mode-link-map): New variable. (custom-group-link, custom-manual): Use follow-link.
* (hook): Fix typo in docstring.Juanma Barranquero2006-11-061-1/+1
|
* (custom-save-all): Error if saving in .emacs and it had an error when loaded.Richard M. Stallman2006-11-051-0/+2
|
* (custom-unlispify-menu-entries, custom-unlispify-tag-names,Juanma Barranquero2006-11-031-3/+3
| | | | custom-prompt-variable): Use "non-nil" in docstrings.
* * wid-edit.el (widget-button-click-moves-point): New variable.Chong Yidong2006-09-301-0/+7
| | | | | | | (widget-button-click): If widget-button-click-moves-point is non-nil, set point after performing the button action * cus-edit.el (custom-mode): Set widget-button-click-moves-point.
* * cus-edit.el (custom-save-all): Switch to emacs-lisp mode beforeChong Yidong2006-09-291-0/+2
| | | | saving anything to be sure that `forward-sexp' behaves correctly.
* (custom-buffer-create-internal): In `emacs -q',Richard M. Stallman2006-09-221-4/+9
| | | | explain why Save is not available.
* (mode-line): Renamed from modeline. All uses changed.Richard M. Stallman2006-09-141-1/+1
|
* (custom-menu-create): Bind deactivate-mark hereRichard M. Stallman2006-09-081-3/+3
| | | | (custom-group-menu-create): Not here.
* * cus-edit.el (custom-group-menu-create): Avoid deactivating theChong Yidong2006-09-031-1/+2
| | | | mark after running the menu filter.
* (custom-save-variables): Slight cleanup.Richard M. Stallman2006-08-311-9/+21
| | | | | | (Custom-no-edit): Renamed from custom-no-edit. (Custom-newline): Renamed from custom-newline. (custom-mode-map): Use new names.
* (custom-newline): New function.Richard M. Stallman2006-08-161-0/+9
| | | | (custom-mode-map): Bind newline to custom-newline.
* * cus-edit.el (custom-no-edit): Revert 2006-07-27 change, so thatChong Yidong2006-07-281-7/+2
| | | | | self-insert-command keys don't activate buttons. (custom-mode-map): Just don't bind "\C-m" to `custom-no-edit'.
* (customize-package-emacs-version-alist): Doc fix.Richard M. Stallman2006-07-281-19/+27
| | | | | (customize-package-emacs-version): Change msg when pkg has no entry. (custom-no-edit): On a button, do like widget-button-press.
* (custom-variable-state-set): If the variable was originally set outsideStefan Monnier2006-07-171-1/+12
| | | | custom, but to the same value as the default, consider it to be standard.
* (custom-no-edit): New command.Richard M. Stallman2006-07-121-1/+8
| | | | | (custom-mode-map): Remap to custom-no-edit instead of using suppress-keymap.
* (customize-apropos): A better error message.Eli Zaretskii2006-06-231-7/+16
| | | | | (top level) <debug-ignored-errors>: Extend and update the list of ignored error messages.
* (customize-option, customize-option-other-window): Error if SYMBOL is nil.Richard M. Stallman2006-06-191-0/+4
|
* (custom-guess-name-alist): Recognize `-flag'.Richard M. Stallman2006-06-161-0/+1
|
* (custom-documentation): Avoid nil spec in defface.Luc Teirlinck2006-04-211-1/+1
|
* * cus-edit.el (customize-package-emacs-version-alist): UpdateBill Wohler2006-04-141-11/+27
| | | | | | | | docstring. (customize-package-emacs-version): Use cdr instead of cadr now that alists use dotted pairs. * custom.el (defcustom): Fix docstring for :package-version.
* * custom.el (defcustom, custom-handle-keyword): Add :package-versionBill Wohler2006-04-101-2/+44
| | | | | | | | | | | keyword. (custom-add-package-version): New function. Sets value of new property 'custom-package-version from :package-version keyword. * cus-edit.el (customize-package-emacs-version-alist): New variable. (customize-changed-options): Add check for custom-package-version. (customize-package-emacs-version): New function to look up Emacs version corresponding to the given package version.
* * cus-edit.el (custom-face-set): Call custom-push-theme beforeChong Yidong2006-03-211-2/+6
| | | | | | | | | face-spec set so that `changed' theme is correctly saved. (custom-face-reset-standard): Reset to recalculated face rather than defface spec. * custom.el (custom-push-theme): Only save `changed' theme if the current face does not match the defface specs.
* (customize-changed-options): Mention explicit version number asLuc Teirlinck2006-03-171-1/+5
| | | | default in prompt.
* (custom-quote): Remove function since it has been moved to custom.el.Eli Zaretskii2006-03-031-15/+0
|
* * cus-edit.el (customize-set-variable): Push setting to `user' theme.Chong Yidong2006-02-191-0/+1
|
* * cus-edit.el (custom-save-variables): Allow unthemed values.Chong Yidong2006-02-191-1/+3
|
* * cus-edit.el (custom-mode): Update docstring.Chong Yidong2006-02-151-1/+1
|
* * wid-edit.el (widget-keymap): Bind down-mouse-1 toChong Yidong2006-02-151-1/+0
| | | | | | widget-button-click. * cus-edit.el (custom-mode-map): Remove mouse-1 binding.
* * wid-edit.el (widget-button-click): Use :pressed-face propertyChong Yidong2006-02-141-2/+6
| | | | | | | | for overlay face, if it exists. * cus-edit.el (custom-manual, custom-add-see-also) (custom-add-parent-links, custom-group-link): Add :pressed-face property to links.
* (custom-mode): Doc: Use advertised-widget-backward.Richard M. Stallman2006-01-261-1/+1
|
* (custom-buffer-create-internal): Use widget typeJuri Linkov2006-01-231-39/+30
| | | | | | | | | | | | | | | | | | | | | `custom-manual' instead of `info-link' and don't set properties `button-face' and `mouse-face' explicitly. (custom-browse-group-tag, custom-browse-variable-tag) (custom-browse-face-tag): Inherit from widget class `custom-group-link' instead of `push-button'. (custom-button-unraised): Inherit from `underline' face. (custom-link): Inherit from `link' face. Fix doc and group. (custom-add-parent-links, custom-group-value-create): Don't set properties `button-face' and `mouse-face' explicitly for `custom-group-link' widget. (custom-group-link): Add properties `button-face' and `mouse-face' to widget definition. (custom-field-keymap): New variable. Put `custom-field-keymap' to editable-field's :keymap property. (custom-mode): Fix docstring: substitute keybindings for `widget-forward' and `widget-backward' from `widget-keymap', `widget-complete' from `custom-field-keymap', replace old `Custom-move-and-invoke' with `widget-move-and-invoke'. Untabify.
* (custom-buffer-create-internal): State in the text aboveLuc Teirlinck2006-01-191-8/+8
| | | | | | | | | the whole buffer buttons that they do not operate on hidden items. (custom-face-menu): Use `custom-face-save' instead of `custom-face-save-command'. (custom-face-save-command): Make it an alias for `custom-face-save' and declare it obsolete. (custom-face-save): Doc fix.
* (customize-rogue): Minor doc fix.Luc Teirlinck2006-01-171-1/+1
|
* (Custom-set, Custom-save, Custom-reset-current, Custom-reset-saved):Luc Teirlinck2006-01-151-21/+34
| | | | Do not ask for confirmation in single option buffers.
* (custom-add-see-also, custom-add-parent-links): Make sure the links useEli Zaretskii2006-01-131-2/+8
| | | | the `custom-link' face.
* (custom-reset-menu, custom-buffer-create-internal)Luc Teirlinck2006-01-121-36/+38
| | | | | | (custom-variable-menu, custom-face-menu, custom-group-menu) (Custom-mode-menu): Change names of menu items. (As discussed on emacs-devel.) (custom-face-menu): Add "Undo Edits" item.
* (custom-comment) <defface>: Add TTY definitions.John Paul Wallington2006-01-091-5/+8
|
* (Custom-set, Custom-save): Doc fix.Richard M. Stallman2006-01-081-7/+11
| | | | | | (Custom-reset-current, Custom-reset-saved): Change question text. (Custom-reset-standard): Likewise. (custom-variable-reset-saved): Doc fix.
* (custom-reset-menu, Custom-mode-menu)Chong Yidong2006-01-041-63/+63
| | | | | (custom-variable-menu, custom-face-menu, custom-group-menu): Move back to previous ordering.
* * cus-edit.el (custom-face-save): Push to theme-face beforeChong Yidong2006-01-041-1/+1
| | | | setting face spec.
* * cus-edit.el (custom-reset-menu, Custom-mode-menu)Chong Yidong2006-01-041-30/+33
| | | | | | | (custom-variable-menu, custom-face-menu, custom-group-menu): Undo last change. (Custom-reset-current, Custom-reset-saved) (Custom-reset-standard): Fix y-or-n-p messages.