help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ask for the value of several variables at once


From: Yuri Khan
Subject: Re: ask for the value of several variables at once
Date: Fri, 9 Mar 2018 17:03:32 +0700

On Fri, Mar 9, 2018 at 12:56 AM, Uwe Brauer <oub@mat.ucm.es> wrote:
> I want to have  an output like this
>
> sc-citation-leader "    "
> sc-reference-tag-string ">>"
> message-yank-cited-prefix "   >"
> message-yank-prefix "  >"
>
> Say, best with the documentation text suppressed.

Why not just go for a simple solution for a simple need?

(defun my-ask-mail-yank ()
  (interactive)
  (message "sc-citation-leader %S
sc-reference-tag-string %S
message-yank-cited-prefix %S
message-yank-prefix %S"
           sc-citation-leader
           sc-reference-tag-string
           message-yank-cited-prefix
           message-yank-prefix))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]