help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to check if point is on a line starting a hidden paragraph?


From: Teemu Likonen
Subject: Re: How to check if point is on a line starting a hidden paragraph?
Date: Wed, 21 Jul 2010 21:01:41 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2.50 (gnu/linux)

* 2010-07-21 20:59 (+0300), Teemu Likonen wrote:

>     (defun invisible-text-starts-from-this-line-p ()
>       (save-excursion
>         (goto-char (line-end-position))
>         (invisible-p (point))))

I wrote too quickly. That can be simplified:

    (defun invisible-text-starts-here-p ()
      (invisible-p (line-end-position)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]