summaryrefslogtreecommitdiff
path: root/test/lisp/custom-tests.el
diff options
context:
space:
mode:
authorMauro Aranda <maurooaranda@gmail.com>2019-09-27 18:06:36 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2019-09-27 18:06:36 +0200
commit283fd5f2f6f3fa1f650c5a77f9e3587faddd6881 (patch)
treebbb25ef172b502812844b6a01061f8b56491f8a2 /test/lisp/custom-tests.el
parent9ba907a5fbafaa323402ec1cfe4239ebf87a8a0a (diff)
downloademacs-283fd5f2f6f3fa1f650c5a77f9e3587faddd6881.tar.gz
emacs-283fd5f2f6f3fa1f650c5a77f9e3587faddd6881.tar.bz2
emacs-283fd5f2f6f3fa1f650c5a77f9e3587faddd6881.zip
Don't discard customizations in progress when adding comments (Bug#5358)
* lisp/cus-edit.el (custom-comment-show): Add docstring. Save the widget value in the :shown-value property, before redrawing. (custom-variable-modified-p): New function, to complement the return values of custom-variable-state. (custom-variable-state-set): Use it. (custom-face-value-create): Add children to the custom-face widget before setting the state, to be able to check for user edits. (custom-face-state-set): Check for user edits before calling custom-face-state (bug#5358). * test/lisp/custom-tests.el (custom-test-show-comment-preserves-changes): New test.
Diffstat (limited to 'test/lisp/custom-tests.el')
-rw-r--r--test/lisp/custom-tests.el28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/lisp/custom-tests.el b/test/lisp/custom-tests.el
index 0c49db6c76d..270acda292c 100644
--- a/test/lisp/custom-tests.el
+++ b/test/lisp/custom-tests.el
@@ -21,6 +21,10 @@
(require 'ert)
+(require 'wid-edit)
+(require 'cus-edit)
+(require 'seq) ; For `seq-find'.
+
(ert-deftest custom-theme--load-path ()
"Test `custom-theme--load-path' behavior."
(let ((tmpdir (file-name-as-directory (make-temp-file "custom-tests-" t))))
@@ -123,4 +127,28 @@
(should (equal custom--test-user-option 'baz))
(should (equal custom--test-variable 'baz))))
+;; This tests Bug#5358.
+(ert-deftest custom-test-show-comment-preserves-changes ()
+ "Test that adding a comment doesn't discard modifications in progress."
+ (customize-option 'custom--test-user-option)
+ (let* ((field (seq-find (lambda (widget)
+ (eq custom--test-user-option (widget-value widget)))
+ widget-field-list))
+ (parent (widget-get field :parent))
+ (origvalue (widget-value field)))
+ ;; Move to the end of the text of the widget, and modify it. This
+ ;; modification should be preserved after showing the comment field.
+ (goto-char (widget-field-text-end field))
+ (insert "bar")
+ (custom-comment-show parent)
+ ;; From now on, must use `widget-at' to get the value of the widget.
+ (should-not (eq origvalue (widget-value (widget-at))))
+ (should (eq (widget-get parent :custom-state) 'modified))
+ (should (eq (widget-value (widget-at))
+ (widget-apply field
+ :value-to-external
+ (concat
+ (widget-apply field :value-to-internal origvalue)
+ "bar"))))))
+
;;; custom-tests.el ends here