From: Markus Rost Date: Mon, 14 Oct 2002 22:20:42 +0000 (+0000) Subject: Minor change. X-Git-Tag: ttn-vms-21-2-B4~12828 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a7e0e4148a18d535194bb9ed40bb895be2623ff;p=emacs.git Minor change. --- diff --git a/admin/cus-test.el b/admin/cus-test.el index bccdcca6c1f..f6062c9f7f0 100644 --- a/admin/cus-test.el +++ b/admin/cus-test.el @@ -234,8 +234,7 @@ The detected problematic options are stored in `cus-test-errors'." ;; Store symbols with a custom-get property. (when (get symbol 'custom-get) - (add-to-list 'cus-test-vars-with-custom-get - symbol 'append)) + (add-to-list 'cus-test-vars-with-custom-get symbol)) ;; Changed outside the customize buffer? ;; This routine is not very much tested. @@ -246,8 +245,7 @@ The detected problematic options are stored in `cus-test-errors'." (and (consp c-value) (boundp symbol) (not (equal (eval (car c-value)) (symbol-value symbol))) - (add-to-list 'cus-test-vars-with-changed-state - symbol 'append))) + (add-to-list 'cus-test-vars-with-changed-state symbol))) (if mismatch (push symbol cus-test-errors)))