GNU bug report logs -
#24073
24.5; outline-on-heading-p sees any invisible text property as outline inviisble
Previous Next
Reported by: Paul Rankin <hello <at> paulwrankin.com>
Date: Tue, 26 Jul 2016 08:13:02 UTC
Severity: normal
Merged with 28080
Found in versions 24.5, 25.2
Fixed in version 26.1
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
Message #68 received at 24073 <at> debbugs.gnu.org (full text, mbox):
Eli Zaretskii <eliz <at> gnu.org> on Wed, 31 Aug 2016 17:25 +0300:
> > From: Paul Rankin <hello <at> paulwrankin.com>
> > Date: Wed, 31 Aug 2016 12:56:13 +1000
> > Cc: 24073 <at> debbugs.gnu.org
> >
> > >> The fix seems trivial to me so I'm wondering if there is anything holding it
> > >> up from being included in 25?
> > >
> > > Yes, the fact that Emacs 25 is for all practical purposes already
> > > released.
> >
> > Okay. 25.2?
>
> I don't see why not, provided that Org developers give us their
> blessing. Please bring this to their attention on the Org list, or
> ask them to speak up here. I don't want us to make any changes that
> could adversely affect Org without consulting them first.
Dear Org Mode maintainers,
Looping you in on a proposed bug fix for `outline-invisible-p'.
Briefly, the problem is the function returns non-nil for any invisible
text property when it should only do so for the outline property. As a
defsubst, it is difficult to patch for other affected programs.
Diff pasted:
--- /usr/local/Cellar/emacs/25.1-rc2/share/emacs/25.1/lisp/outline.el.gz
+++ #<buffer outline.el.gz>
@@ -388,9 +388,9 @@
nil 'move))
(defsubst outline-invisible-p (&optional pos)
- "Non-nil if the character after POS is invisible.
+ "Non-nil if the character after POS has outline invisible property.
If POS is nil, use `point' instead."
- (get-char-property (or pos (point)) 'invisible))
+ (eq (get-char-property (or pos (point)) 'invisible) 'outline))
(defun outline-back-to-heading (&optional invisible-ok)
"Move to previous heading line, or beg of this line if it's a heading.
Diff finished. Sat Sep 3 14:35:22 2016
This bug report was last modified 4 years and 202 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.