]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor change.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 14 Oct 2002 22:20:42 +0000 (22:20 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Mon, 14 Oct 2002 22:20:42 +0000 (22:20 +0000)
admin/cus-test.el

index bccdcca6c1f908315c518fab7221dabb6bc504f9..f6062c9f7f0737813622a2a7cf848d9ddd14dae8 100644 (file)
@@ -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)))