+2006-02-19 Chong Yidong <cyd@stupidchicken.com>
+
+ * cus-edit.el (custom-save-variables): Allow unthemed values.
+
2006-02-19 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gud.el: Don't require font-lock as it's now
(mapatoms
(lambda (symbol)
(if (and (get symbol 'saved-value)
- (eq 'user (car (car-safe (get symbol 'theme-value)))))
+ ;; ignore theme values
+ (or (null (get symbol 'theme-value))
+ (eq 'user (caar (get symbol 'theme-value)))))
(nconc saved-list (list symbol)))))
(setq saved-list (sort (cdr saved-list) 'string<))
(unless (bolp)