]> git.eshelyaron.com Git - emacs.git/commitdiff
Mention `M-n' for VALUE in the `set-variable' command
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Jul 2019 04:26:55 +0000 (06:26 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 13 Jul 2019 04:26:55 +0000 (06:26 +0200)
* lisp/simple.el (set-variable): Mention that the current variable
is accessible in `M-n' (bug#36586).

lisp/simple.el

index 2768bd4a75e00216633acfb57b345e3710b30894..00265ece71e758cea6d64931f7334073eaf0e343 100644 (file)
@@ -8008,7 +8008,12 @@ For a variable defined with `defcustom', it does not pay attention to
 any :set property that the variable might have (if you want that, use
 \\[customize-set-variable] instead).
 
-With a prefix argument, set VARIABLE to VALUE buffer-locally."
+With a prefix argument, set VARIABLE to VALUE buffer-locally.
+
+When called interactively, the user is prompted for VARIABLE and
+then VALUE.  The current value of VARIABLE will be put in the
+minibuffer history so that it can be accessed with `M-n', which
+makes it easier to edit it."
   (interactive
    (let* ((default-var (variable-at-point))
           (var (if (custom-variable-p default-var)