emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/cus-edit.el


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/cus-edit.el
Date: Mon, 13 Dec 2004 15:04:58 -0500

Index: emacs/lisp/cus-edit.el
diff -c emacs/lisp/cus-edit.el:1.201 emacs/lisp/cus-edit.el:1.202
*** emacs/lisp/cus-edit.el:1.201        Mon Dec  6 14:01:19 2004
--- emacs/lisp/cus-edit.el      Mon Dec 13 19:39:01 2004
***************
*** 1561,1569 ****
    :group 'custom-magic-faces)
  
  (defface custom-set-face '((((class color))
!                               (:foreground "blue" :background "white"))
!                              (t
!                               (:slant italic)))
    "Face used when the customize item has been set."
    :group 'custom-magic-faces)
  
--- 1561,1569 ----
    :group 'custom-magic-faces)
  
  (defface custom-set-face '((((class color))
!                           (:foreground "blue" :background "white"))
!                          (t
!                           (:slant italic)))
    "Face used when the customize item has been set."
    :group 'custom-magic-faces)
  
***************
*** 1578,1608 ****
    "Face used when the customize item has been saved."
    :group 'custom-magic-faces)
  
! (defconst custom-magic-alist '((nil "#" underline "\
  uninitialized, you should not see this.")
!                              (unknown "?" italic "\
  unknown, you should not see this.")
!                              (hidden "-" default "\
  hidden, invoke \"Show\" in the previous line to show." "\
  group now hidden, invoke \"Show\", above, to show contents.")
!                              (invalid "x" custom-invalid-face "\
  the value displayed for this %c is invalid and cannot be set.")
!                              (modified "*" custom-modified-face "\
  you have edited the value as text, but you have not set the %c." "\
  you have edited something in this group, but not set it.")
!                              (set "+" custom-set-face "\
  you have set this %c, but not saved it for future sessions." "\
  something in this group has been set, but not saved.")
!                              (changed ":" custom-changed-face "\
  this %c has been changed outside the customize buffer." "\
  something in this group has been changed outside customize.")
!                              (saved "!" custom-saved-face "\
  this %c has been set and saved." "\
  something in this group has been set and saved.")
!                              (rogue "@" custom-rogue-face "\
  this %c has not been changed with customize." "\
  something in this group is not prepared for customization.")
!                              (standard " " nil "\
  this %c is unchanged from its standard setting." "\
  visible group members are all at standard settings."))
    "Alist of customize option states.
--- 1578,1609 ----
    "Face used when the customize item has been saved."
    :group 'custom-magic-faces)
  
! (defconst custom-magic-alist
!   '((nil "#" underline "\
  uninitialized, you should not see this.")
!     (unknown "?" italic "\
  unknown, you should not see this.")
!     (hidden "-" default "\
  hidden, invoke \"Show\" in the previous line to show." "\
  group now hidden, invoke \"Show\", above, to show contents.")
!     (invalid "x" custom-invalid-face "\
  the value displayed for this %c is invalid and cannot be set.")
!     (modified "*" custom-modified-face "\
  you have edited the value as text, but you have not set the %c." "\
  you have edited something in this group, but not set it.")
!     (set "+" custom-set-face "\
  you have set this %c, but not saved it for future sessions." "\
  something in this group has been set, but not saved.")
!     (changed ":" custom-changed-face "\
  this %c has been changed outside the customize buffer." "\
  something in this group has been changed outside customize.")
!     (saved "!" custom-saved-face "\
  this %c has been set and saved." "\
  something in this group has been set and saved.")
!     (rogue "@" custom-rogue-face "\
  this %c has not been changed with customize." "\
  something in this group is not prepared for customization.")
!     (standard " " nil "\
  this %c is unchanged from its standard setting." "\
  visible group members are all at standard settings."))
    "Alist of customize option states.
***************
*** 2576,2582 ****
    "Edit face attributes."
    :format "%t: %v"
    :tag "Attributes"
!   :extra-offset 12
    :button-args '(:help-echo "Control whether this attribute has any effect.")
    :value-to-internal 'custom-face-edit-fix-value
    :match (lambda (widget value)
--- 2577,2583 ----
    "Edit face attributes."
    :format "%t: %v"
    :tag "Attributes"
!   :extra-offset 13
    :button-args '(:help-echo "Control whether this attribute has any effect.")
    :value-to-internal 'custom-face-edit-fix-value
    :match (lambda (widget value)
***************
*** 2817,2829 ****
  
  (define-widget 'custom-face-selected 'group
    "Edit the attributes of the selected display in a face specification."
!   :args '((repeat :format ""
!                 :inline t
!                 (group custom-display-unselected sexp))
!         (group (sexp :format "") custom-face-edit)
!         (repeat :format ""
!                 :inline t
!                 sexp)))
  
  (defconst custom-face-selected (widget-convert 'custom-face-selected)
    "Converted version of the `custom-face-selected' widget.")
--- 2818,2846 ----
  
  (define-widget 'custom-face-selected 'group
    "Edit the attributes of the selected display in a face specification."
!   :args '((choice :inline t
!                 (group :tag "With Defaults" :inline t
!                  (group (const :tag "" default)
!                         (custom-face-edit :tag " Default\n Attributes"))
!                  (repeat :format ""
!                          :inline t
!                          (group custom-display-unselected sexp))
!                  (group (sexp :format "")
!                         (custom-face-edit :tag " Overriding\n Attributes"))
!                  (repeat :format ""
!                          :inline t
!                          sexp))
!                 (group :tag "No Defaults" :inline t
!                        (repeat :format ""
!                                :inline t
!                                (group custom-display-unselected sexp))
!                        (group (sexp :format "")
!                               (custom-face-edit :tag "\n Attributes"))
!                        (repeat :format ""
!                                :inline t
!                                sexp)))))
! 
! 
  
  (defconst custom-face-selected (widget-convert 'custom-face-selected)
    "Converted version of the `custom-face-selected' widget.")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]