From: Bruno Barbier <brubar.cs@gmail.com>
To: Heime <heimeborgia@protonmail.com>,
Heime via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Re: Format with %-*
Date: Mon, 08 Jul 2024 19:47:46 +0200 [thread overview]
Message-ID: <668c2644.050a0220.1cd50.0e56@mx.google.com> (raw)
In-Reply-To: <-t_b-eMlmOCn1_vFdAmz9waZjs7MjLMZYRZVXJA3NXssGUg92uCVXGpvbYwFJWOfrwcigbCc6tP3SxPlpPuebgW_SdhWSAQguDd6lSXj_Oc=@protonmail.com>
Heime <heimeborgia@protonmail.com> writes:
> Why do I get "error: Invalid format operation %*" and how can I fix it ?
>
>
>
> (defun insert-labels-in-columns (monbf col1-labels col2-labels col3-labels)
[...]
It seems that your problem could be reproduce with this one line:
(format "%-*s" 10 "label")
It raises this error:
(error "Invalid format operation %*")
and, indeed, I don't see the format control "%*" anywhere in the
'format' documentation, so, it looks like it's not a valid format
operation.
If you just copy/pasted a C 'printf' format, you probably should use
something like this instead:
(format (format "%%-%ss" 10) "label")
HTH,
Bruno
next prev parent reply other threads:[~2024-07-08 17:47 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-08 16:07 Format with %-* Heime
2024-07-08 17:47 ` Bruno Barbier [this message]
2024-07-08 19:53 ` Heime
2024-07-09 8:07 ` Bruno Barbier
2024-07-09 8:59 ` Michael Heerdegen via Users list for the GNU Emacs text editor
2024-07-09 13:39 ` Emanuel Berg
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=668c2644.050a0220.1cd50.0e56@mx.google.com \
--to=brubar.cs@gmail.com \
--cc=heimeborgia@protonmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.