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

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

Re: Is there a way to convert a keyboard macro to a string?


From: Emanuel Berg
Subject: Re: Is there a way to convert a keyboard macro to a string?
Date: Wed, 26 Jul 2017 08:43:01 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux)

Or complete:

    (require 'cl-lib)
    (require 'subr-x)

    (defvar *test-vector* #[1 2 3 4])

    (string-join
     (cl-loop for e
              across *test-vector*
              collecting (format "%s" e))) ; "1234"

-- 
underground experts united
http://user.it.uu.se/~embe8573




reply via email to

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