unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Paul Eggert <eggert@cs.ucla.edu>
To: Dmitry Gutov <dgutov@yandex.ru>, emacs-devel@gnu.org
Subject: Re: Escaping quotes in docstrings, Was: A simple solution to "Upcoming loss of usability ..."
Date: Tue, 30 Jun 2015 19:56:18 -0700	[thread overview]
Message-ID: <559356D2.4000103@cs.ucla.edu> (raw)
In-Reply-To: <55908355.3080407@yandex.ru>

Dmitry Gutov wrote:
> On 06/28/2015 11:27 PM, Dmitry Gutov wrote:
>
>> Ok. But I'd rather push to the scratch/quote-escaping branch, if you
>> don't mind.
>
> Check it out.

I tried it out.  One thing I noticed right away is odd behavior that results 
from storing grave accent and apostrophe in the buffer and displaying them as 
curved quotes.  For example, run 'emacs -Q -nw', then read the documentation for 
the 'length' function and copy it to a new file /tmp/foo by typing "C-h f length 
RET C-x o C-x h M-w C-x 4 f /tmp/foo RET C-y C-s".  On the screen you'll see a 
buffer 'foo' containing curved quotes.  Now, revisit /tmp/foo by typing "C-x C-v 
RET".  The buffer will contain the same contents as before, except the curved 
quotes are magically transformed to grave accent and apostrophe on the display. 
  It's weird that copied text mysteriously changes its display representation at 
a seemingly unrelated moment.

How about the following idea instead.  Instead of displaying grave accent and 
apostrophe specially, have with-help-window transliterate these characters in 
place before displaying itself as usual.  with-help-window should not 
transliterate characters that are marked as being escaped, or as being user data 
(not clear that we need two kinds of marks here; one should do, no?).

That's the big picture.  Here are a few more-minor remarks.

> +  (font-lock-add-keywords
> +   nil '(("\\(\\\\~\\)\\(?:\\\\~\\|.\\)"

As already mentioned, the new \~ quoting syntax doesn't seem to be needed; we 
can get by with the existing \= quoting syntax.  So let's go that direction.

Also, this regexp string matches either (1) \~\~ or (2) \~ followed by any 
non-newline character.  But if \~ is supposed to escape the next character, the 
regexp string should simply implement that, i.e., the regexp string should be 
"\\\\~\\(.\\|\n\\)".

I assume the extra complication is about escaping backslash itself, e.g., if the 
docstring is \~\ (which would look like "\\~\\" in the source code) this should 
stand for \ in the *Help* buffer.  But the above regexp doesn't do that. If we 
were to keep \~ perhaps we could do the simple regexp match first, and then look 
backwards programatically just before the matching \~ and verifying that either 
(1) it's not preceded by ordinary ~ or (2) it's preceded by ordinary ~ but the ~ 
is not preceded by ordinary \.  By "ordinary" I mean a character that does not 
have the help-value or help-tilde-escaped properties.

But all and all this is sounding way tooo complicated and we should simply use 
the same escape sequences we've always been using.

> +               (unless (get-text-property mbeg 'help-value)

Supposed the matched string is partly help-value, and partly not.  E.g., mbeg 
has help-value but mbeg+1 does not but mbeg+2 does.  Shouldn't this test that 
all the matched characters are not help-value characters?

> +                 ;; If we use "" as the third argument, cursor
> +                 ;; stumbles once when moving over its position.

I don't understand this comment.  Can you explain?  For example, does the 
comment apply to the just the compose-region call, or to the rest of the 'unless'?

> +                                 (buffer-substring-no-properties
> +                                  mend (1+ mend)))

This may go haywire if it returns "\t", because a TAB is special to 
compose-region.  Also, what if the buffer has some properties other than 
help-value that should be preserved?

At this point I stopped reviewing the changes in detail, as really the big 
picture should be addressed first.



  reply	other threads:[~2015-07-01  2:56 UTC|newest]

Thread overview: 51+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-25 14:59 A simple solution to "Upcoming loss of usability ..." Oleh Krehel
2015-06-25 15:37 ` Dmitry Gutov
2015-06-25 16:36 ` Paul Eggert
2015-06-25 17:00   ` Oleh Krehel
2015-06-25 20:48     ` Paul Eggert
2015-06-25 21:10       ` Dmitry Gutov
2015-06-25 22:15         ` Paul Eggert
2015-06-25 22:25           ` Dmitry Gutov
2015-06-25 22:41             ` Paul Eggert
2015-06-25 22:52               ` Dmitry Gutov
2015-06-27 15:00         ` raman
2015-06-25 18:32   ` Dmitry Gutov
2015-06-25 22:17     ` Paul Eggert
2015-06-25 22:38       ` Dmitry Gutov
2015-06-26  2:35         ` Paul Eggert
2015-06-26 12:06           ` Dmitry Gutov
2015-06-27 17:28             ` Paul Eggert
2015-06-27 17:53               ` Dmitry Gutov
2015-06-27 21:09                 ` Paul Eggert
2015-06-28  1:04                   ` Dmitry Gutov
2015-06-28 15:20                     ` Paul Eggert
2015-06-28 20:27                       ` Escaping quotes in docstrings, Was: " Dmitry Gutov
2015-06-28 23:29                         ` Dmitry Gutov
2015-07-01  2:56                           ` Paul Eggert [this message]
2015-07-02  0:09                             ` Dmitry Gutov
2015-07-02  6:57                               ` Paul Eggert
2015-07-02  9:46                                 ` Dmitry Gutov
2015-07-06  6:12                                 ` Paul Eggert
2015-07-06 12:07                                   ` Dmitry Gutov
2015-07-06 16:30                                     ` Paul Eggert
2015-07-06 22:10                                       ` Dmitry Gutov
2015-07-07  7:54                                         ` Paul Eggert
2015-07-07  8:39                                           ` Dmitry Gutov
2015-08-01  1:36                                             ` Paul Eggert
2015-08-01 21:05                                               ` Dmitry Gutov
2015-08-02  6:56                                                 ` Paul Eggert
2015-08-02 12:51                                                   ` Dmitry Gutov
2015-08-02 15:13                                                     ` Paul Eggert
2015-08-02 18:31                                                       ` Dmitry Gutov
2015-08-02  8:49                                                 ` Przemysław Wojnowski
2015-08-02 19:16                                                   ` Drew Adams
2015-06-27 17:57               ` Dmitry Gutov
2015-06-25 23:12       ` João Távora
2015-06-26  7:40       ` Oleh Krehel
2015-06-26 14:54         ` Paul Eggert
2015-06-26 15:03           ` Dmitry Gutov
2015-06-25 20:58   ` Alan Mackenzie
2015-06-25 22:34     ` Paul Eggert
2015-06-25 22:40       ` Dmitry Gutov
2015-06-25 22:45         ` Paul Eggert
2015-06-25 22:55           ` Dmitry Gutov

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=559356D2.4000103@cs.ucla.edu \
    --to=eggert@cs.ucla.edu \
    --cc=dgutov@yandex.ru \
    --cc=emacs-devel@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 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).