diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-04-26 11:21:21 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-04-26 11:21:21 +0200 |
commit | 67a4bb27461b0e3b39b27db688b5981b6eb62175 (patch) | |
tree | 8bd202691f8823a19725b96af85fde1a8358ae11 /include/linux/consolemap.h | |
parent | 06df3bcefa1ef8d0b36164880163f9e2d9349246 (diff) |
Revert "vt: update ucs_width.c using gen_ucs_width.py"
This reverts commit 3a1ab63aa05b4736a7d30ae0a769385662f13def.
A new version of the series was submitted, so it's easier to revert the
old one and add the new one due to the changes invovled.
Cc: Nicolas Pitre <nico@fluxnic.net>
Cc: Jiri Slaby <jirislaby@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/consolemap.h')
-rw-r--r-- | include/linux/consolemap.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/consolemap.h b/include/linux/consolemap.h index b3a911866662..7d778752dcef 100644 --- a/include/linux/consolemap.h +++ b/include/linux/consolemap.h @@ -29,7 +29,11 @@ u32 conv_8bit_to_uni(unsigned char c); int conv_uni_to_8bit(u32 uni); void console_map_init(void); bool ucs_is_double_width(uint32_t cp); -bool ucs_is_zero_width(uint32_t cp); +static inline bool ucs_is_zero_width(uint32_t cp) +{ + /* coming soon */ + return false; +} #else static inline u16 inverse_translate(const struct vc_data *conp, u16 glyph, bool use_unicode) |