comparison lisp/cus-edit.el @ 5384:3889ef128488

Fix misspelled words, and some grammar, across the entire source tree. See xemacs-patches message with ID <AANLkTi=edkEKtK3pZ60ytsG5pTJQy2TjAEVCZCLOa-oA@mail.gmail.com>.
author Jerry James <james@xemacs.org>
date Thu, 24 Mar 2011 11:00:11 -0600
parents f00192e1cd49
children 4dee0387b9de
comparison
equal deleted inserted replaced
5383:294ab9180fad 5384:3889ef128488
2443 (put symbol 'customized-value nil) 2443 (put symbol 'customized-value nil)
2444 (put symbol 'customized-variable-comment nil) 2444 (put symbol 'customized-variable-comment nil)
2445 (when (or (get symbol 'saved-value) (get symbol 'saved-variable-comment)) 2445 (when (or (get symbol 'saved-value) (get symbol 'saved-variable-comment))
2446 (put symbol 'saved-value nil) 2446 (put symbol 'saved-value nil)
2447 (custom-push-theme 'theme-value symbol 'user 'reset 'standard) 2447 (custom-push-theme 'theme-value symbol 'user 'reset 'standard)
2448 ;; As a special optimizations we do not (explictly) 2448 ;; As a special optimization we do not (explicitly)
2449 ;; save resets to standard when no theme sets the value. 2449 ;; save resets to standard when no theme sets the value.
2450 (if (null (cdr (get symbol 'theme-value))) 2450 (if (null (cdr (get symbol 'theme-value)))
2451 (put symbol 'theme-value nil)) 2451 (put symbol 'theme-value nil))
2452 (put symbol 'saved-variable-comment nil) 2452 (put symbol 'saved-variable-comment nil)
2453 widget) 2453 widget)
2908 (put symbol 'customized-face nil) 2908 (put symbol 'customized-face nil)
2909 (put symbol 'customized-face-comment nil) 2909 (put symbol 'customized-face-comment nil)
2910 (when (or (get symbol 'saved-face) (get symbol 'saved-face-comment)) 2910 (when (or (get symbol 'saved-face) (get symbol 'saved-face-comment))
2911 (put symbol 'saved-face nil) 2911 (put symbol 'saved-face nil)
2912 (custom-push-theme 'theme-face symbol 'user 'reset 'standard) 2912 (custom-push-theme 'theme-face symbol 'user 'reset 'standard)
2913 ;; Do not explictly save resets to standards without themes. 2913 ;; Do not explicitly save resets to standards without themes.
2914 (if (null (cdr (get symbol 'theme-face))) 2914 (if (null (cdr (get symbol 'theme-face)))
2915 (put symbol 'theme-face nil)) 2915 (put symbol 'theme-face nil))
2916 (put symbol 'saved-face-comment nil) 2916 (put symbol 'saved-face-comment nil)
2917 widget) 2917 widget)
2918 )) 2918 ))