commit f05c8ffa324c378d2cc0cf0e5f61b1a6b50c7fb6 from: Omar Polo date: Sun Dec 20 09:47:12 2020 UTC update the right line without the (beginning-of-line), if the cursor is after the equal sign, we would update the wrong line. commit - be68dd882c8b88c7e9a837733f71c3eec6efb45f commit + f05c8ffa324c378d2cc0cf0e5f61b1a6b50c7fb6 blob - 5288a25291cf349ee9eda49f2cedb2b3a3ed0967 blob + a90c9547aa53e154e102a097cce038f4e284673b --- sndio.el +++ sndio.el @@ -63,6 +63,7 @@ (defun sndio--update-value (x) "Update the value for the input/output at point setting it to X." (save-excursion + (beginning-of-line) (search-forward "=") (let ((inhibit-read-only t)) (delete-region (point) (line-end-position))