zsh-workers
 help / color / mirror / code / Atom feed
* Example / partial fix for printf with math expressions
@ 2024-02-23 23:23 Bart Schaefer
  2024-02-24 14:40 ` Stephane Chazelas
  0 siblings, 1 reply; 7+ messages in thread
From: Bart Schaefer @ 2024-02-23 23:23 UTC (permalink / raw)
  To: Zsh hackers list

No attachment, so beware line wrap.

This repairs (printf "%d" ...) but obviously hasn't touched any of the
several other places where bin_print() calls matheval() and friends.
Upshot, math expects to get metafied strings, bin_print() does not (or
at least not always) pass them that way.

I also did not investigate whether curarg needs a known length rather
than calling metafy with -1, but since math is internally going to
stop at nul bytes anyway, I don't think it matters.

Also because the strings are metafied, checkunary() needs some
MULTIBYTE tweaking to get the count right and not split characters in
the middle when showing an error.  Someone who works more with that
should investigate.

diff --git a/Src/builtin.c b/Src/builtin.c
index dd352c146..5fccbac6d 100644
--- a/Src/builtin.c
+++ b/Src/builtin.c
@@ -5465,7 +5465,8 @@ bin_print(char *name, char **args, Options ops, int func)
                        *d++ = 'l';
 #endif
                        *d++ = 'l', *d++ = *c, *d = '\0';
-                       zlongval = (curarg) ? mathevali(curarg) : 0;
+                       zlongval = (curarg) ?
+                           mathevali(metafy(curarg, -1, META_HEAPDUP)) : 0;
                        if (errflag) {
                            zlongval = 0;
                            errflag &= ~ERRFLAG_ERROR;


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2024-02-26 17:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-23 23:23 Example / partial fix for printf with math expressions Bart Schaefer
2024-02-24 14:40 ` Stephane Chazelas
2024-02-24 15:10   ` Stephane Chazelas
2024-02-24 21:51   ` Bart Schaefer
2024-02-25  6:54   ` Stephane Chazelas
2024-02-26  0:04     ` Bart Schaefer
2024-02-26 17:12       ` Bart Schaefer

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).