From: Marcin Borkowski <mbork@mbork.pl>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: help-gnu-emacs@gnu.org
Subject: Re: How to check whether the current line is a comment-only one?
Date: Thu, 18 Aug 2016 16:11:30 +0200 [thread overview]
Message-ID: <87pop6p3ot.fsf@mbork.pl> (raw)
In-Reply-To: <jwvvayyle4p.fsf-monnier+gmane.emacs.help@gnu.org>
On 2016-08-18, at 09:44, Stefan Monnier <monnier@iro.umontreal.ca> wrote:
>> is there a predicate function to determine whether the line the point is
>> in is entirely a comment line?
>
> I don't think there is one yet. Depending on what you mean by "entirely
> a comment", it could be:
>
> (save-excursion
> (forward-line 0)
> (< (line-end-position)
> (let ((ppss (syntax-ppss)))
> (when (nth 4 ppss)
> (goto-char (nth 8 ppss)))
> (forward-comment (point-max))
> (point))))
Hi Stefan,
from a cursory read of the above, this might be exactly what I need.
Thanks.
BTW, AUCTeX has a function called `TeX-in-commented-line'. Here's its
docstring:
--8<---------------cut here---------------start------------->8---
Return non-nil if point is in a line consisting only of a comment.
The comment can be preceded by whitespace. This means that
‘TeX-in-commented-line’ is more general than ‘TeX-in-line-comment’
which will not match commented lines with leading whitespace. But
‘TeX-in-commented-line’ will match commented lines without leading
whitespace as well.
--8<---------------cut here---------------end--------------->8---
> -- Stefan
Best,
--
Marcin Borkowski
http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski
Faculty of Mathematics and Computer Science
Adam Mickiewicz University
next prev parent reply other threads:[~2016-08-18 14:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-18 6:16 How to check whether the current line is a comment-only one? Marcin Borkowski
2016-08-18 7:44 ` Stefan Monnier
2016-08-18 14:11 ` Marcin Borkowski [this message]
2016-08-18 11:39 ` Kaushal Modi
2016-08-18 14:09 ` Marcin Borkowski
2016-08-18 14:43 ` Thien-Thi Nguyen
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87pop6p3ot.fsf@mbork.pl \
--to=mbork@mbork.pl \
--cc=help-gnu-emacs@gnu.org \
--cc=monnier@iro.umontreal.ca \
/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 external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.