]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid errors when a restricted-sexp widget is empty
authorMauro Aranda <maurooaranda@gmail.com>
Sat, 9 Sep 2023 13:59:30 +0000 (21:59 +0800)
committerEli Zaretskii <eliz@gnu.org>
Sat, 16 Sep 2023 09:56:34 +0000 (12:56 +0300)
* lisp/wid-edit.el (restricted-sexp): Don't try to read
an empty string when converting the current value to the
external format.  (Bug#63838)

* test/lisp/wid-edit-tests.el (widget-test-restricted-sexp-empty-val):
New test.

lisp/wid-edit.el
test/lisp/wid-edit-tests.el

index d18d721f7ed72a4157954eed5f514ec44d0d75d4..74412414113d493a7459ff6efd66c8c65730fafa 100644 (file)
@@ -3681,7 +3681,9 @@ match-alternatives: %S"
                           :warning)
                          ;; Make sure we will `read' a string.
                          (setq value (prin1-to-string value)))
-                       (read value)))
+                       (if (string-empty-p value)
+                           value
+                       (read value))))
 
 (defun widget-restricted-sexp-match (widget value)
   (let ((alternatives (widget-get widget :match-alternatives))
index ebfe729bc9af90cd626aaaea0e2583ad3f644cc0..66bff4ad2e32741ba9dd0a89f1fe696e902423c4 100644 (file)
@@ -380,4 +380,15 @@ return nil, even with a non-nil bubblep argument."
                                     :value (("1" . 1) ("2" . 2))))))
       (should (equal '(("1" . 1) ("2" . 2)) (widget-default-get w))))))
 
+(ert-deftest widget-test-restricted-sexp-empty-val ()
+  "Test that we handle an empty restricted-sexp widget just fine."
+  (with-temp-buffer
+    (let ((w (widget-create '(restricted-sexp
+                              :value 3
+                              :match-alternatives (integerp)))))
+      (widget-setup)
+      (widget-backward 1)
+      (delete-char 1)
+      (should (string= (widget-value w) "")))))
+
 ;;; wid-edit-tests.el ends here