summaryrefslogtreecommitdiff
path: root/lisp/outline.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/outline.el')
-rw-r--r--lisp/outline.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/outline.el b/lisp/outline.el
index f94dbb954a3..dca5f1a7de8 100644
--- a/lisp/outline.el
+++ b/lisp/outline.el
@@ -38,7 +38,7 @@
(defgroup outlines nil
"Support for hierarchical outlining."
:prefix "outline-"
- :group 'wp)
+ :group 'text)
(defvar outline-regexp "[*\^L]+"
"Regular expression to match the beginning of a heading.
@@ -388,9 +388,9 @@ at the end of the buffer."
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.