From: Eli Zaretskii <eliz@gnu.org>
To: Yuan Fu <casouri@gmail.com>
Cc: larsi@gnus.org, emacs-devel@gnu.org
Subject: Re: Line wrap reconsidered
Date: Sat, 18 Jul 2020 11:15:33 +0300 [thread overview]
Message-ID: <838sfhi6hm.fsf@gnu.org> (raw)
In-Reply-To: <214EBF50-8BEE-4935-9DE9-526E82F7D85C@gmail.com> (message from Yuan Fu on Mon, 13 Jul 2020 15:46:16 -0400)
> From: Yuan Fu <casouri@gmail.com>
> Date: Mon, 13 Jul 2020 15:46:16 -0400
> Cc: Lars Ingebrigtsen <larsi@gnus.org>,
> emacs-devel@gnu.org
>
> Please have a look at the patch and see if it’s ok. If you think it’s good I can then update NEWS and the manual and submit a bug report. wrap.txt is the file I used to test word wrapping. To enable the full feature, set cjk-word-wrap to t and load kinsoku.el.
Yes, we need to update NEWS and the manual.
Also, we may need to rename cjk-word-wrap to something more accurate,
as result of your answers to my questions below.
A few minor comments below.
> * src/xdisp.c (it_char_has_category, char_can_wrap_before,
> char_can_wrap_after): New function.
^^^^^^^^^^^^
"New functions", in plural.
> (move_it_in_display_line_to, display_line): Replace
> IT_DISPLAYING_WHITESPACE with char_can_wrap_before and
> char_can_wrap_after.
Please quote all references in commit log messages to functions and
variables 'like this'.
> +/* These are the category sets we use. */
> +#define NOT_AT_EOL 60 /* < */
> +#define NOT_AT_BOL 62 /* > */
> +#define LINE_BREAKABLE 124 /* | */
Why not just use the characters themselves, as in '<' and '|' ?
Also, if these characters are from kinsoku.el, please says so in
comments, because if kinsoku.el changes, we may need to update those.
> +static bool it_char_has_category(struct it *it, int cat)
> +{
> + if (it->what == IT_CHARACTER)
> + return CHAR_HAS_CATEGORY (it->c, cat);
> + else if (STRINGP (it->string))
> + return CHAR_HAS_CATEGORY (SREF (it->string,
> + IT_STRING_BYTEPOS (*it)), cat);
> + else if (it->s)
> + return CHAR_HAS_CATEGORY (it->s[IT_BYTEPOS (*it)], cat);
> + else if (IT_BYTEPOS (*it) < ZV_BYTE)
> + return CHAR_HAS_CATEGORY (*BYTE_POS_ADDR (IT_BYTEPOS (*it)), cat);
> + else
> + return false;
> +}
A minor stylistic nit: I'd prefer the if - elseif clauses to yield the
relevant character, and then apply CHAR_HAS_CATEGORY only once to that
character at the end. (It is generally better to have only one return
point from a function, especially when the function is short. If
nothing else, it makes debugging easier.)
> + return (!IT_DISPLAYING_WHITESPACE (it)
> + // Can be at BOL.
Please don't use //-style C++ comments, we use the C /* style */
comments instead.
> + return (IT_DISPLAYING_WHITESPACE (it)
> + // Can break after && can be at EOL.
> + || (it_char_has_category (it, LINE_BREAKABLE)
> + && !it_char_has_category (it, not_at_eol)));
Same here.
> if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
> {
> - if (IT_DISPLAYING_WHITESPACE (it))
> - may_wrap = true;
> - else if (may_wrap)
> + /* Can we wrap here? */
> + if (may_wrap && char_can_wrap_before (it))
I'm worried about a potential change in logic here, when cjk-word-wrap
is off. Previously, we just tested IT_DISPLAYING_WHITESPACE, but now
we also test may_wrap. Is it guaranteed that may_wrap is always true
in that case?
> @@ -23292,9 +23365,8 @@ #define RECORD_MAX_MIN_POS(IT) \
>
> if (it->line_wrap == WORD_WRAP && it->area == TEXT_AREA)
> {
> - if (IT_DISPLAYING_WHITESPACE (it))
> - may_wrap = true;
> - else if (may_wrap)
> + /* Can we wrap here? */
> + if (may_wrap && char_can_wrap_before (it))
Likewise here.
> {
> SAVE_IT (wrap_it, *it, wrap_data);
> wrap_x = x;
> @@ -23308,9 +23380,13 @@ #define RECORD_MAX_MIN_POS(IT) \
> wrap_row_min_bpos = min_bpos;
> wrap_row_max_pos = max_pos;
> wrap_row_max_bpos = max_bpos;
> - may_wrap = false;
> }
> - }
> + /* This has to run after the previous block. */
> + if (char_can_wrap_after (it))
> + may_wrap = true;
> + else
> + may_wrap = false;
Please use TABs and spaces to indent code in C source files. The last
2 lines use only spaces.
> + DEFVAR_BOOL("cjk-word-wrap", Vcjk_word_wrap,
> + doc: /* Non-nil means wrap after CJK chracters.
This is unclear. Does it mean after _any_ CJK character, or just
after some? And if the latter, which ones?
Thanks.
next prev parent reply other threads:[~2020-07-18 8:15 UTC|newest]
Thread overview: 88+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-25 18:13 Line wrap reconsidered Yuan Fu
2020-05-25 19:23 ` Eli Zaretskii
2020-05-25 19:31 ` Yuan Fu
2020-05-26 1:55 ` Ihor Radchenko
2020-05-26 12:55 ` Joost Kremers
2020-05-26 13:35 ` Yuan Fu
2020-05-26 14:47 ` Eli Zaretskii
2020-05-26 15:01 ` Ihor Radchenko
2020-05-26 15:29 ` Eli Zaretskii
2020-05-26 15:46 ` Ihor Radchenko
2020-05-26 16:29 ` Eli Zaretskii
2020-05-26 15:59 ` Stefan Monnier
2020-05-26 16:31 ` Eli Zaretskii
2020-05-26 16:43 ` Yuan Fu
2020-05-26 16:43 ` Ihor Radchenko
2020-05-26 18:57 ` Eli Zaretskii
2020-05-26 19:10 ` Yuan Fu
2020-05-26 19:59 ` Eli Zaretskii
2020-05-26 19:12 ` Ihor Radchenko
2020-05-26 20:04 ` Eli Zaretskii
2020-05-26 21:01 ` Stefan Monnier
2020-05-25 19:31 ` Stefan Monnier
2020-05-25 19:51 ` Yuan Fu
2020-05-25 20:43 ` Lars Ingebrigtsen
2020-05-25 23:26 ` Yuan Fu
2020-05-25 23:32 ` Yuan Fu
2020-05-26 2:15 ` Yuan Fu
2020-05-26 3:30 ` Yuan Fu
2020-05-26 4:46 ` Yuan Fu
2020-05-26 15:14 ` Eli Zaretskii
2020-05-26 15:00 ` Eli Zaretskii
2020-05-26 14:54 ` Eli Zaretskii
2020-05-26 17:34 ` Yuan Fu
2020-05-26 19:50 ` Eli Zaretskii
2020-05-26 20:31 ` Yuan Fu
2020-05-26 22:29 ` Yuan Fu
2020-05-27 17:29 ` Eli Zaretskii
2020-05-28 17:31 ` Yuan Fu
2020-05-28 18:05 ` Eli Zaretskii
2020-05-28 19:34 ` Yuan Fu
2020-05-28 20:42 ` Yuan Fu
2020-05-29 7:17 ` Eli Zaretskii
2020-05-29 6:56 ` Eli Zaretskii
2020-05-29 21:20 ` Yuan Fu
2020-05-30 6:14 ` Eli Zaretskii
2020-05-31 17:39 ` Yuan Fu
2020-05-31 17:55 ` Eli Zaretskii
2020-05-31 18:23 ` Yuan Fu
2020-05-31 18:47 ` Eli Zaretskii
2020-06-18 21:46 ` Yuan Fu
2020-06-19 6:17 ` Eli Zaretskii
2020-06-19 12:04 ` Yuan Fu
2020-06-19 12:38 ` Eli Zaretskii
2020-06-19 17:22 ` Yuan Fu
2020-06-19 17:47 ` Eli Zaretskii
2020-06-19 18:03 ` Yuan Fu
2020-06-19 18:34 ` Eli Zaretskii
2020-07-12 17:25 ` Yuan Fu
2020-07-12 18:27 ` Eli Zaretskii
2020-07-12 19:28 ` Yuan Fu
2020-07-13 19:46 ` Yuan Fu
2020-07-18 8:15 ` Eli Zaretskii [this message]
2020-07-18 17:14 ` Yuan Fu
2020-07-18 19:49 ` Yuan Fu
2020-07-18 20:25 ` Stefan Monnier
2020-07-19 14:52 ` Eli Zaretskii
2020-07-19 16:16 ` Yuan Fu
2020-07-19 16:17 ` Yuan Fu
2020-08-13 19:35 ` Yuan Fu
2020-08-14 5:55 ` Eli Zaretskii
2020-08-14 15:08 ` Yuan Fu
2020-08-15 9:10 ` Eli Zaretskii
2020-08-15 13:10 ` Fu Yuan
2020-08-15 14:56 ` Eli Zaretskii
2020-08-15 17:34 ` Yuan Fu
2020-08-15 17:46 ` Eli Zaretskii
2020-08-15 18:00 ` Yuan Fu
2020-08-15 18:47 ` Eli Zaretskii
2020-08-16 3:22 ` Yuan Fu
2020-08-16 14:15 ` Eli Zaretskii
2020-08-16 17:31 ` Yuan Fu
2020-08-22 7:42 ` Eli Zaretskii
2020-08-22 20:58 ` Yuan Fu
2020-08-23 7:12 ` Eli Zaretskii
2020-08-24 14:00 ` Yuan Fu
2020-05-27 15:20 ` Eli Zaretskii
2020-05-26 8:02 ` martin rudalics
2020-05-26 12:38 ` Yuan Fu
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
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=838sfhi6hm.fsf@gnu.org \
--to=eliz@gnu.org \
--cc=casouri@gmail.com \
--cc=emacs-devel@gnu.org \
--cc=larsi@gnus.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 public inbox
https://git.savannah.gnu.org/cgit/emacs.git
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 read-only IMAP folder(s) and NNTP newsgroup(s).