summaryrefslogtreecommitdiffstatshomepage
path: root/py/mpprint.h
diff options
context:
space:
mode:
authorJeff Epler <jepler@gmail.com>2025-06-13 17:52:29 +0200
committerDamien George <damien@micropython.org>2025-06-16 13:58:13 +1000
commit1a8f4b290bc19cc3981f6deb2cb10a40a7b3bbea (patch)
tree6351c2d3ddb6ecbbb2a91bc20f135dd26bf9b488 /py/mpprint.h
parent73b1cbc17abe6da6f913d30dad960e5401577c0f (diff)
downloadmicropython-1a8f4b290bc19cc3981f6deb2cb10a40a7b3bbea.tar.gz
micropython-1a8f4b290bc19cc3981f6deb2cb10a40a7b3bbea.zip
py/mpprint: Remove unused "PF_FLAG_NO_TRAILZ" flag.
Looking at the git history, there's no indication that the `PF_FLAG_NO_TRAILZ` flag was ever implemented or that "%!" was used as an `mp_printf` format string in practice. So remove the flag and re-number the other flags. Leave `PF_FLAG_SEP_POS` at 9 (the highest position that probably works with 16-bit integers like the pic16bit port). Signed-off-by: Jeff Epler <jepler@gmail.com>
Diffstat (limited to 'py/mpprint.h')
-rw-r--r--py/mpprint.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/py/mpprint.h b/py/mpprint.h
index 511af329ba..583f00bda8 100644
--- a/py/mpprint.h
+++ b/py/mpprint.h
@@ -31,12 +31,11 @@
#define PF_FLAG_LEFT_ADJUST (0x001)
#define PF_FLAG_SHOW_SIGN (0x002)
#define PF_FLAG_SPACE_SIGN (0x004)
-#define PF_FLAG_NO_TRAILZ (0x008)
-#define PF_FLAG_SHOW_PREFIX (0x010)
-#define PF_FLAG_PAD_AFTER_SIGN (0x020)
-#define PF_FLAG_CENTER_ADJUST (0x040)
-#define PF_FLAG_ADD_PERCENT (0x080)
-#define PF_FLAG_SHOW_OCTAL_LETTER (0x100)
+#define PF_FLAG_SHOW_PREFIX (0x008)
+#define PF_FLAG_PAD_AFTER_SIGN (0x010)
+#define PF_FLAG_CENTER_ADJUST (0x020)
+#define PF_FLAG_ADD_PERCENT (0x040)
+#define PF_FLAG_SHOW_OCTAL_LETTER (0x080)
#define PF_FLAG_SEP_POS (9) // must be above all the above PF_FLAGs
#if MICROPY_PY_IO && MICROPY_PY_SYS_STDFILES