unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: "Andreas Röhler" <andreas.roehler@easy-emacs.de>
To: Lars Ingebrigtsen <larsi@gnus.org>
Cc: 13973@debbugs.gnu.org
Subject: bug#13973: Subject: 24.3; thingatpt.el, end-of-sexp
Date: Mon, 23 Aug 2021 19:11:45 +0200	[thread overview]
Message-ID: <524429ba-026c-e5a6-579e-1789bd2cee1a@easy-emacs.de> (raw)
In-Reply-To: <87a6l9ufug.fsf@gnus.org>


On 23.08.21 03:09, Lars Ingebrigtsen wrote:
> Andreas Röhler <andreas.roehler@easy-emacs.de> writes:
>
>> (defun end-of-sexp ()
>>    "Move point to the end of the current sexp.
>> \[This is an internal function.]"
>>    (let ((char-syntax (char-syntax (char-after))))
>>      (if (or (eq char-syntax ?\))
>> 	    (and (eq char-syntax ?\") (in-string-p)))
>> 	(forward-char 1)
>>        (forward-sexp 1))))
>>
>> "or" asks if inside a string and calls (forward-char 1).
>>
>> This must fail with some probability with
>> triple-quoted-strings as used in Python.
>>
>> Solution:
>>
>> When inside a string, jump to (nth 8 (syntax-ppss)) and
>> call (forward-sexp 1) from there.
> (I'm going through old bug reports that unfortunately weren't resolved
> at the time.)
>
> It's not quite clear to me what the actual problem here is.

It's only abstract reasoning when looking at the code.

Maybe put the Python code below at the top of some buffer and run the 
test delivered below:

# Python

def main():
     """Some hint"""
     if len(sys.argv) == 1:
         usage()

;; Elisp
(defun forward-sexp-text ()
   (interactive)
   (goto-char 30 )
   (forward-sexp))


>   Do you have
> a test case where thingatpt does the wrong thing in Python mode?
>





  reply	other threads:[~2021-08-23 17:11 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-16  7:51 bug#13973: Subject: 24.3; thingatpt.el, end-of-sexp Andreas Röhler
2013-03-16 10:33 ` Leo Liu
2013-03-16 12:09   ` Andreas Röhler
2013-03-16 13:50   ` Stefan Monnier
2021-08-23  1:09 ` Lars Ingebrigtsen
2021-08-23 17:11   ` Andreas Röhler [this message]
2021-08-25 10:38     ` Lars Ingebrigtsen
2021-08-26  6:21       ` Andreas Röhler
2021-08-26 14:05         ` Lars Ingebrigtsen
2021-08-27 18:44           ` Andreas Röhler
2021-08-28 15:05             ` Lars Ingebrigtsen

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=524429ba-026c-e5a6-579e-1789bd2cee1a@easy-emacs.de \
    --to=andreas.roehler@easy-emacs.de \
    --cc=13973@debbugs.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).