]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix doc strings in help-fns.el
authorEli Zaretskii <eliz@gnu.org>
Mon, 4 Jul 2022 12:13:12 +0000 (15:13 +0300)
committerEli Zaretskii <eliz@gnu.org>
Mon, 4 Jul 2022 12:13:12 +0000 (15:13 +0300)
* lisp/help-fns.el (help-fns-edit-mode-done)
(help-fns-edit-mode-cancel): Doc fixes.

lisp/help-fns.el

index fc691e76424a49842f1ad5941e9dcfa9ccf06923..17354783ca0c55c8f7cb484a7dada84a4fbbed12 100644 (file)
@@ -1402,7 +1402,7 @@ it is displayed along with the global value."
   :interactive nil)
 
 (defun help-fns-edit-mode-done (&optional kill)
-  "Update the value of the variable and kill the buffer.
+  "Update the value of the variable being edited and kill the edit buffer.
 If KILL (the prefix), don't update the value, but just kill the
 current buffer."
   (interactive "P" help-fns--edit-value-mode)
@@ -1423,7 +1423,8 @@ current buffer."
         (revert-buffer)))))
 
 (defun help-fns-edit-mode-cancel ()
-  "Kill the buffer without updating the value."
+  "Kill the edit buffer and cancel editing of the value.
+This cancels value editing without updating the value."
   (interactive nil help-fns--edit-value-mode)
   (help-fns-edit-mode-done t))